Coverage for django_napse/utils/errors/exchange.py: 100%
5 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1class ExchangeError:
2 """Base class for exchange errors."""
4 class UnavailableTicker(Exception):
5 """Raised when a ticker is not available on the exchange."""
8class ExchangeAccountError:
9 """Base class for exchange account errors."""
11 class CreateError(Exception):
12 """Raised when a exchange account cannot be created."""
14 class APIPermissionError(Exception):
15 """Raised when a exchange account cannot interact with the exchange API."""