mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
12 lines
148 B
Python
12 lines
148 B
Python
|
|
|
|
class CommandError(Exception):
|
|
pass
|
|
|
|
|
|
class CommandNotFoundError(CommandError):
|
|
pass
|
|
|
|
|
|
class CommandPrivilegeError(CommandError):
|
|
pass |