forked from SocketDev/socket-python-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptions.py
More file actions
38 lines (26 loc) · 785 Bytes
/
exceptions.py
File metadata and controls
38 lines (26 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
__all__ = [
"APIFailure",
"APIKeyMissing",
"APIAccessDenied",
"APIInsufficientQuota",
"APIResourceNotFound",
"APICloudflareError"
]
class APICloudflareError(Exception):
"""Raised when there is an error using the API related to cloudflare"""
pass
class APIKeyMissing(Exception):
"""Raised when the api key is not passed and the headers are empty"""
pass
class APIFailure(Exception):
"""Raised when there is an error using the API"""
pass
class APIAccessDenied(Exception):
"""Raised when access is denied to the API"""
pass
class APIInsufficientQuota(Exception):
"""Raised when access is denied to the API"""
pass
class APIResourceNotFound(Exception):
"""Raised when access is denied to the API"""
pass