mirror of
https://github.com/exituser/prosto-sms-python.git
synced 2026-09-17 02:38:57 +00:00
15 lines
233 B
Python
15 lines
233 B
Python
class ApiException(Exception):
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def __str__(self):
|
|
return repr(self.value)
|
|
|
|
|
|
class NoAuthData(ApiException):
|
|
pass
|
|
|
|
|
|
class RequestError(ApiException):
|
|
pass
|