Model/backend/epc_client/exceptions.py
Khalim Conn-Kowlessar d338be867b added missing files
2026-04-25 22:41:57 +00:00

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."""