Skip to content

Inspectors

Exceptions for inspectors.

InspectorError

Bases: FedRAGError

Base inspector error for all inspector-related exceptions.

Source code in src/fed_rag/exceptions/inspectors.py
6
7
8
9
class InspectorError(FedRAGError):
    """Base inspector error for all inspector-related exceptions."""

    pass

InspectorWarning

Bases: FedRAGWarning

Base inspector warning for all inspector-related warnings.

Source code in src/fed_rag/exceptions/inspectors.py
class InspectorWarning(FedRAGWarning):
    """Base inspector warning for all inspector-related warnings."""

    pass