chore: move dependencies, add more tests

This commit is contained in:
2025-12-05 11:21:41 +01:00
parent 8455322af4
commit 30e4cded8f
10 changed files with 608 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
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."""