mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-30 13:55:21 +00:00
5 lines
128 B
Python
5 lines
128 B
Python
class NotCommands(Exception):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
self.message = message
|