mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
7 lines
140 B
Python
7 lines
140 B
Python
class CookieError(Exception):
|
|
def __init__(self, info):
|
|
self.info = info
|
|
|
|
def __str__(self):
|
|
return repr(self.info)
|