|
| 1 | +class HttpResponseException(Exception): |
| 2 | + """ |
| 3 | + An Exception caused by bad Http response code |
| 4 | + Http codes >= 400 |
| 5 | + """ |
| 6 | + |
| 7 | + def __init__(self, http_code, msg): |
| 8 | + """ |
| 9 | + An Exception caused by bad Http response code |
| 10 | + Http codes >= 400 |
| 11 | +
|
| 12 | + Args: |
| 13 | + http_code (int): http response status code that caused the error, |
| 14 | + will determine the type of exception message |
| 15 | + msg (str): the system exec info, traceback is kept and we add msg to it |
| 16 | + """ |
| 17 | + self.http_code = http_code |
| 18 | + self.msg = msg |
| 19 | + |
| 20 | + def __str__(self): |
| 21 | + |
| 22 | + |
| 23 | + output = f""" |
| 24 | + [ HttpResponseException ] |
| 25 | + {self.http_code} -- {self.msg}\n |
| 26 | + Make sure that : \n |
| 27 | + - subdomain is valid\n |
| 28 | + - good connection to internet\n |
| 29 | + - avoid using VPN |
| 30 | +
|
| 31 | + """ |
| 32 | + |
| 33 | + return output |
| 34 | + |
| 35 | + |
| 36 | +class APIException(Exception): |
| 37 | + """ |
| 38 | + An Exception caused by an API response with |
| 39 | + an error, the recieved error message/description |
| 40 | + will be raised |
| 41 | + """ |
| 42 | + |
| 43 | + def __init__(self, http_code, msg): |
| 44 | + """ |
| 45 | + An Exception caused by an API response with |
| 46 | + an error, the recieved error message/description |
| 47 | + will be raised |
| 48 | +
|
| 49 | + Args: |
| 50 | + http_code (int): the response http code |
| 51 | + msg (str): the system exec info, traceback is kept and we add msg to it |
| 52 | + """ |
| 53 | + self.http_code = http_code |
| 54 | + self.msg = msg |
| 55 | + |
| 56 | + def __str__(self): |
| 57 | + |
| 58 | + if self.http_code == 401: |
| 59 | + output = f""" |
| 60 | + [ HttpResponseException ] |
| 61 | + {self.http_code} -- {self.msg}\n |
| 62 | + [[ Unauthorized ]] Make sure that : \n |
| 63 | + - API key is valid\n |
| 64 | +
|
| 65 | + """ |
| 66 | + elif self.http_code == 400: |
| 67 | + output = f""" |
| 68 | + [ HttpResponseException ] |
| 69 | + {self.http_code} -- {self.msg}\n |
| 70 | + [[ Bad Request ]] Make sure that : \n |
| 71 | + - Request params are valid (valid phone number / valid IP address ...)\n |
| 72 | +
|
| 73 | + """ |
| 74 | + else: |
| 75 | + output = f""" |
| 76 | + [ HttpResponseException ] |
| 77 | + {self.http_code} -- {self.msg}\n |
| 78 | + Make sure that : \n |
| 79 | + - subdomain is valid\n |
| 80 | + - connection to internet\n |
| 81 | + - avoid using VPN |
| 82 | +
|
| 83 | + """ |
| 84 | + |
| 85 | + return output |
| 86 | + |
0 commit comments