Skip to content

Event Store Error

event_store_error

Event store error type for application-level operations.

EventStoreError

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