From ed5f9f522b518e75f8ce3cca893d85d7c1efccdd Mon Sep 17 00:00:00 2001 From: sudosnok Date: Sat, 26 Mar 2022 16:18:17 +0000 Subject: [PATCH] Started exceptions.py --- exceptions.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 exceptions.py diff --git a/exceptions.py b/exceptions.py new file mode 100644 index 0000000..c3f8744 --- /dev/null +++ b/exceptions.py @@ -0,0 +1,5 @@ +#== exceptions.py ==# + +class APIError(Exception): + """Base level exceptions raised by errors related to any API request or call""" + pass \ No newline at end of file