mirror of
https://github.com/PaiGramTeam/GramCore.git
synced 2024-11-22 14:27:18 +00:00
13 lines
346 B
Python
13 lines
346 B
Python
class CookieServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class CookiesCachePoolExhausted(CookieServiceError):
|
|
def __init__(self):
|
|
super().__init__("Cookies cache pool is exhausted")
|
|
|
|
|
|
class TooManyRequestPublicCookies(CookieServiceError):
|
|
def __init__(self, user_id):
|
|
super().__init__(f"{user_id} too many request public cookies")
|