9 lines
155 B
Python
9 lines
155 B
Python
class WhaleError(Exception):
|
|
def __init__(self, msg):
|
|
super().__init__(msg)
|
|
self.message = msg
|
|
|
|
|
|
class WhaleWarning(Warning):
|
|
pass
|