Skip to content

fathom.FleetError

fathom.FleetError

Bases: FathomError

Base exception for fleet-related errors (shared working memory, sync).

Source code in src/fathom/errors.py
class FleetError(FathomError):
    """Base exception for fleet-related errors (shared working memory, sync)."""

    def __init__(
        self,
        message: str,
        session_id: str | None = None,
    ):
        self.session_id = session_id
        super().__init__(message)