Coverage for django_napse/utils/errors/transactions.py: 100%
3 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 TransactionError:
2 """Base class for transaction errors."""
4 class DifferentAccountError(Exception):
5 """Raised when the from and to wallets are on different spaces."""
7 class InvalidTransactionError(Exception):
8 """Raised when the transaction is invalid."""