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

1class ExchangeError: 

2 """Base class for exchange errors.""" 

3 

4 class UnavailableTicker(Exception): 

5 """Raised when a ticker is not available on the exchange.""" 

6 

7 

8class ExchangeAccountError: 

9 """Base class for exchange account errors.""" 

10 

11 class CreateError(Exception): 

12 """Raised when a exchange account cannot be created.""" 

13 

14 class APIPermissionError(Exception): 

15 """Raised when a exchange account cannot interact with the exchange API."""