File size: 300 Bytes
cfc8e23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class RAGException(Exception):
    """Base exception for RAG system"""

    pass


class IndexNotLoadedError(RAGException):
    """Raised when trying to search without loading index"""

    pass


class DocumentProcessingError(RAGException):
    """Raised when document processing fails"""

    pass