Coverage for django_napse/utils/errors/wallets.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-12 13:49 +0000

1class WalletError: 

2 """Base class for wallet errors.""" 

3 

4 class SpendError(Exception): 

5 """Raised when a wallet cannot spend.""" 

6 

7 class TopUpError(Exception): 

8 """Raised when a wallet cannot top up.""" 

9 

10 class CreateError(Exception): 

11 """Raised when a wallet cannot be created.""" 

12 

13 class UnavailableTicker(Exception): 

14 """Raised when a ticker is the wallet's currencies."""