File size: 311 Bytes
3f46b6e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
class SearchError(Exception):
    """Base exception for search errors."""
    pass

class NoResultsFound(SearchError):
    """Raised when no search results are returned."""
    pass

class SearchEngineUnavailable(SearchError):
    """Raised when the search engine is down or unreachable."""
    pass