From 3ce7a8ecc0b8e9fdc9dedc6da164b20f6bb2c967 Mon Sep 17 00:00:00 2001 From: Ollie <69084614+olijeffers0n@users.noreply.github.com> Date: Mon, 3 May 2021 10:50:45 +0100 Subject: [PATCH] Update exceptions.py --- rustplus/exceptions/exceptions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rustplus/exceptions/exceptions.py b/rustplus/exceptions/exceptions.py index ddca53b..5912508 100644 --- a/rustplus/exceptions/exceptions.py +++ b/rustplus/exceptions/exceptions.py @@ -5,4 +5,8 @@ class Error(Exception): class ClientError(Error): """Raised when the client details are not valid""" - pass \ No newline at end of file + pass + +class ImageError(Error): + """Raised when the Image Returned is not valid""" + pass