From a9b7689760ea7a83c42a304974e90c6277bbbeb3 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 11 Oct 2017 11:08:46 -0400 Subject: [PATCH] Added Exists exception class --- src/main/misc/exceptions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/misc/exceptions.py b/src/main/misc/exceptions.py index 4c3e403..8db2366 100644 --- a/src/main/misc/exceptions.py +++ b/src/main/misc/exceptions.py @@ -3,6 +3,7 @@ base = '⚠️ **An internal error has occurred.** Please notify my master! 🐺 class Left(Exception): pass class Right(Exception): pass class Save(Exception): pass +class Exists(Exception): pass class PostError(Exception): pass class ImageError(Exception): pass class MatchError(Exception): pass