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
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1class WalletError:
2 """Base class for wallet errors."""
4 class SpendError(Exception):
5 """Raised when a wallet cannot spend."""
7 class TopUpError(Exception):
8 """Raised when a wallet cannot top up."""
10 class CreateError(Exception):
11 """Raised when a wallet cannot be created."""
13 class UnavailableTicker(Exception):
14 """Raised when a ticker is the wallet's currencies."""