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 7class 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 10 11class FedRAGWarning(Warning): """Base warning for all fed-rag warnings."""