[docs]
class MessageBusError(Exception):
"""
Base exception class for all message bus errors.
"""
[docs]
class UnknownMessageTypeError(MessageBusError):
"""
Raised when an unknown message type is passed to the message bus.
"""
[docs]
class MessageBusConfigurationError(MessageBusError):
"""
Raised when a configuration error is found, such as a command with no receiver.
"""