MihoyoBBSTools/error.py
2022-01-06 11:27:24 +08:00

5 lines
154 B
Python

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