Coverage for django_napse/utils/errors/orders.py: 100%
4 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 OrderError:
2 """Base class for order errors."""
4 class InvalidOrder(Exception):
5 """Raised when a order is invalid."""
7 class StatusError(Exception):
8 """Raised when the status of an order is changed at the wrong time."""
10 class ProcessError(Exception):
11 """Raised when an error occurs during the processing of an order."""