15 lines
283 B
Python
15 lines
283 B
Python
class CookieError(Exception):
|
|
def __init__(self, info):
|
|
self.info = info
|
|
|
|
def __str__(self):
|
|
return repr(self.info)
|
|
|
|
|
|
class CaptchaError(Exception):
|
|
def __init__(self, info):
|
|
self.info = info
|
|
|
|
def __str__(self):
|
|
return repr(self.info)
|