diff --git a/Discord-QR-Token-Logger/exceptions.py b/Discord-QR-Token-Logger/exceptions.py index 47e1164..603147d 100644 --- a/Discord-QR-Token-Logger/exceptions.py +++ b/Discord-QR-Token-Logger/exceptions.py @@ -2,6 +2,7 @@ class QRCodeNotFound(Exception): """This exception should be raised if a QR code can not be found on the Discord login page. """ + pass @@ -9,6 +10,7 @@ class InvalidToken(Exception): """This exception should be raised if a token does not receive a response status code of 200 when tested against Discord's API. """ + pass @@ -16,4 +18,5 @@ class WebhookSendFailure(Exception): """This exception should be raised if the token webhook fails to send, for whatever reason. """ + pass