mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-01 23:30:24 +00:00
4 lines
145 B
Python
4 lines
145 B
Python
class NotCommands(Exception):
|
|
def __init__(self, message, error_code):
|
|
super().__init__(message)
|
|
self.error_code = error_code |