diff options
author | 2021-12-15 17:53:27 +0000 | |
---|---|---|
committer | 2021-12-15 17:53:27 +0000 | |
commit | 8f90473b096e84eb8c1b3ebfa00b9d2e3331cd73 (patch) | |
tree | a8a8f9433716f497f293b2cb2b55fcd1674680c6 /bot/utils | |
parent | Adding suggestions, removing erroneous commit (diff) | |
parent | Merge pull request #980 from python-discord/dependabot/pip/lxml-4.6.5 (diff) |
Merge branch 'main' of https://github.com/python-discord/sir-lancebot
Diffstat (limited to 'bot/utils')
-rw-r--r-- | bot/utils/exceptions.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bot/utils/exceptions.py b/bot/utils/exceptions.py index bf0e5813..3cd96325 100644 --- a/bot/utils/exceptions.py +++ b/bot/utils/exceptions.py @@ -15,3 +15,10 @@ class APIError(Exception): self.api = api self.status_code = status_code self.error_msg = error_msg + + +class MovedCommandError(Exception): + """Raised when a command has moved locations.""" + + def __init__(self, new_command_name: str): + self.new_command_name = new_command_name |