Files
CTFd-Whale/utils/exceptions.py
2025-09-19 15:59:08 +08:00

9 lines
155 B
Python

class WhaleError(Exception):
def __init__(self, msg):
super().__init__(msg)
self.message = msg
class WhaleWarning(Warning):
pass