Files
DB-GPT/pilot/commands/exception_not_commands.py
2023-05-13 23:00:59 +08:00

4 lines
97 B
Python

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