mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-17 12:24:55 +00:00
3 lines
127 B
Python
3 lines
127 B
Python
|
class CookiesCachePoolExhausted(Exception):
|
||
|
def __init__(self):
|
||
|
super().__init__("Cookies cache pool is exhausted")
|