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