Files
DB-GPT/pilot/commands/exception_not_commands.py
2023-05-24 18:43:04 +08:00

5 lines
128 B
Python

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