yanyuyijian/Scripts/py/FreeNom/utils/exception.py
Leon d81cfd5379 📦
2021-08-11 19:13:07 +08:00

10 lines
183 B
Python

class CustomException(Exception):
def __init__(self, message):
super().__init__(self)
self.message = message
def __str__(self):
return self.message