You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
class CookiePoolError(Exception): |
|
def __str__(self): |
|
return repr('Cookie Pool Error') |
|
|
|
|
|
class SetCookieError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Set Cookie Error') |
|
|
|
|
|
class GetCookieError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Get Cookie Error') |
|
|
|
|
|
class DeleteCookieError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Delete Cookie Error') |
|
|
|
|
|
class GetRandomCookieError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Get Random Cookie Error') |
|
|
|
|
|
class GetAllCookieError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Get All Cookie Error') |
|
|
|
|
|
class SetAccountError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Set Account Error') |
|
|
|
|
|
class DeleteAccountError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Delete Account Error') |
|
|
|
|
|
class GetAccountError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Get Account Error') |
|
|
|
|
|
class GetAllAccountError(CookiePoolError): |
|
def __str__(self): |
|
return repr('Get All Account Error')
|
|
|