Coverage for amazonorders/exception.py: 100.00%
9 statements
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-07 21:56 +0000
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-07 21:56 +0000
1__author__ = "Alex Laird"
2__copyright__ = "Copyright 2024, Alex Laird"
3__version__ = "1.0.7"
6class AmazonOrdersError(Exception):
7 """
8 Raised when a general ``amazon-orders`` error has occurred.
9 """
10 pass
13class AmazonOrdersAuthError(AmazonOrdersError):
14 """
15 Raised when an ``amazon-orders`` authentication error has occurred.
16 """
17 pass
20class AmazonOrderEntityError(AmazonOrdersError):
21 """
22 Raised when an ``amazon-orders`` entity parsing error has occurred.
23 """
24 pass