1
0
Fork 0
mirror of synced 2024-07-01 12:40:28 +12:00
Rare/rare/lgndr/exception.py

5 lines
180 B
Python

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