Fork project
This commit is contained in:
8
utils/exceptions.py
Normal file
8
utils/exceptions.py
Normal file
@ -0,0 +1,8 @@
|
||||
class WhaleError(Exception):
|
||||
def __init__(self, msg):
|
||||
super().__init__(msg)
|
||||
self.message = msg
|
||||
|
||||
|
||||
class WhaleWarning(Warning):
|
||||
pass
|
||||
Reference in New Issue
Block a user