Fork project

This commit is contained in:
2025-09-19 15:59:08 +08:00
commit 2f921b6209
52 changed files with 4012 additions and 0 deletions

8
utils/exceptions.py Normal file
View File

@ -0,0 +1,8 @@
class WhaleError(Exception):
def __init__(self, msg):
super().__init__(msg)
self.message = msg
class WhaleWarning(Warning):
pass