Bases: Error[dict[str, object]]
Base error for event bus operations.
Source code in src/forging_blocks/application/errors/event_bus_error.py
| class EventBusError(Error[dict[str, object]]):
"""Base error for event bus operations."""
def __init__(self, message: str) -> None:
super().__init__(ErrorMessage(message))
|