minos.cqrs.exceptions
Exceptions
Base CQRS exception. |
|
Exception to be raised when a service is trying to be used to handle improper message types. |
|
Exception to be raised when an aggregate diff does not have any missing reference. |
|
Exception to be raised by query service when an internal error is raised. |
- exception MinosCqrsException[source]
Bases:
MinosException
Base CQRS exception.
- __new__(**kwargs)
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception MinosQueryServiceException[source]
Bases:
MinosCqrsException
Exception to be raised by query service when an internal error is raised.
- __new__(**kwargs)
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
- exception MinosIllegalHandlingException[source]
Bases:
MinosException
Exception to be raised when a service is trying to be used to handle improper message types.
- __new__(**kwargs)
- args
- with_traceback()
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.