Files
prosto-sms-python/prosto_sms/exceptions.py
T
2024-04-05 00:38:00 +07:00

14 lines
228 B
Python

class ApiException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class NoAuthData(ApiException):
pass
class ApiError(ApiException):
pass