Files
DB-GPT/pilot/commands/exception_not_commands.py
2023-05-14 20:45:03 +08:00

5 lines
128 B
Python

class NotCommands(Exception):
def __init__(self, message):
super().__init__(message)
self.message = message