mirror of
https://github.com/TDSCDMAA/AutoMihoyoBBS.git
synced 2026-06-03 02:49:12 +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)
|