MihoyoBBSTools/error.py
2022-01-06 13:49:25 +08:00

7 lines
140 B
Python

class CookieError(Exception):
def __init__(self, info):
self.info = info
def __str__(self):
return repr(self.info)