diff options
author | 2022-01-01 23:44:42 +0000 | |
---|---|---|
committer | 2022-01-01 23:44:42 +0000 | |
commit | 21cca969fab2582b51190468b8810c0157c8d7a7 (patch) | |
tree | ee77a61d57b4d46f0e3ebdfadab760896986db2d /bot/utils/exceptions.py | |
parent | Add Better Support For Whitelisting DM Commands (diff) | |
parent | Merge pull request #997 from Sn4u/fix-995 (diff) |
Merge branch 'main' into dm-check
Diffstat (limited to 'bot/utils/exceptions.py')
-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 |