Files
DB-GPT/pilot/base_modules/agent/commands/exception_not_commands.py
yhjun1026 af68e9c4c0 fix(ChatExcel): ChatExcel OutParse Bug Fix
1.ChatExcel OutParse Bug Fix
2023-09-14 20:47:10 +08:00

5 lines
128 B
Python

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