class CookieError(Exception):
def __init__(self, info):
self.info = info
def __str__(self):
return repr(self.info)
class CaptchaError(Exception):