Add scheduler

This commit is contained in:
Richard Chien
2016-12-03 17:16:16 +08:00
parent 7da292e13b
commit e1210c4e5e
6 changed files with 12 additions and 10 deletions

View File

@ -7,15 +7,15 @@ from little_shit import SkipException, get_command_name_separators
_command_name_seps = get_command_name_separators()
class CommandNotExistsError(BaseException):
class CommandNotExistsError(Exception):
pass
class CommandPermissionError(BaseException):
class CommandPermissionError(Exception):
pass
class CommandScopeError(BaseException):
class CommandScopeError(Exception):
def __init__(self, msg_type):
self.msg_type = msg_type