Coverage for amazonorders/exception.py: 100.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-01-18 21:57 +0000

1__author__ = "Alex Laird" 

2__copyright__ = "Copyright 2024, Alex Laird" 

3__version__ = "0.0.3" 

4 

5 

6class AmazonOrdersError(Exception): 

7 """ 

8 Raised when a general ``amazon-orders`` error has occurred. 

9 """ 

10 pass 

11 

12 

13class AmazonOrdersAuthError(AmazonOrdersError): 

14 """ 

15 Raised when an ``amazon-orders`` authentication error has occurred. 

16 """ 

17 pass