Spaces:
Sleeping
Sleeping
File size: 300 Bytes
49f4445 |
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
|