4 lines
105 B
Python
4 lines
105 B
Python
class HieraException(Exception):
|
|
def __init__(self, message = ''):
|
|
super().__init__(message)
|