Files
prosto-sms-python/prosto_sms/exceptions.py
T

15 lines
229 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