mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
10 lines
267 B
Python
10 lines
267 B
Python
class EpcApiError(Exception):
|
|
"""Base for all EPC client errors."""
|
|
|
|
|
|
class EpcNotFoundError(EpcApiError):
|
|
"""Raised when the API returns 404."""
|
|
|
|
|
|
class EpcRateLimitError(EpcApiError):
|
|
"""Raised when the API returns 429 and all retries are exhausted."""
|