Skip to content

FedRAG Exceptions

Base Error Class for FedRAG.

FedRAGError

Bases: Exception

Base error for all fed-rag exceptions.

Source code in src/fed_rag/exceptions/core.py
4
5
6
7
class FedRAGError(Exception):
    """Base error for all fed-rag exceptions."""

    pass

FedRAGWarning

Bases: Warning

Base warning for all fed-rag warnings.

Source code in src/fed_rag/exceptions/core.py
class FedRAGWarning(Warning):
    """Base warning for all fed-rag warnings."""