Skip to content

Event Bus Error

event_bus_error

Event bus error type for application-level operations.

EventBusError

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))