1
0
Fork 0
mirror of synced 2024-10-02 02:07:16 +13:00
Rare/rare/lgndr/exception.py

5 lines
180 B
Python
Raw Normal View History

class LgndrException(RuntimeError):
def __init__(self, message="Error in Legendary"):
self.message = message
super(LgndrException, self).__init__(self.message)