11 lines
274 B
Python
11 lines
274 B
Python
class BibAPIError(Exception):
|
|
"""Base class for all BibAPI errors."""
|
|
|
|
|
|
class CatalogueError(BibAPIError):
|
|
"""Raised when there is an error with the library catalogue API."""
|
|
|
|
|
|
class NetworkError(BibAPIError):
|
|
"""Raised when there is a network-related error."""
|