MihoyoBBSTools/error.py

5 lines
154 B
Python
Raw Normal View History

2022-01-06 03:27:24 +00:00
class cookieError(Exception):
def __init__(self, info):
self.info = info
def __str__(self):
return repr(self.info)