From 08d7f160f8c62f3782c3de1d51ff6c66f4ffb77e Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 2 Oct 2017 19:38:44 -0400 Subject: [PATCH] Compacted class formatter for visibility --- src/main/misc/exceptions.py | 42 ++++++++++++++----------------------- 1 file changed, 16 insertions(+), 26 deletions(-) diff --git a/src/main/misc/exceptions.py b/src/main/misc/exceptions.py index f877ee4..1ab5988 100644 --- a/src/main/misc/exceptions.py +++ b/src/main/misc/exceptions.py @@ -1,28 +1,18 @@ base = '‼️ **An internal error has occurred.** Please notify my master! 🐺' -class PostError(Exception): - pass -class ImageError(Exception): - pass -class MatchError(Exception): - pass -class TagBlacklisted(Exception): - pass -class BoundsError(Exception): - pass -class TagBoundsError(Exception): - pass -class TagExists(Exception): - pass -class TagError(Exception): - pass -class FlagError(Exception): - pass -class BlacklistError(Exception): - pass -class NotFound(Exception): - pass -class Timeout(Exception): - pass -class Continue(Exception): - pass +class PostError(Exception): pass +class ImageError(Exception): pass +class MatchError(Exception): pass +class TagBlacklisted(Exception): pass +class BoundsError(Exception): pass +class TagBoundsError(Exception): pass +class TagExists(Exception): pass +class TagError(Exception): pass +class FlagError(Exception): pass +class BlacklistError(Exception): pass +class NotFound(Exception): pass +class Timeout(Exception): pass +class InvalidVideoFile(Exception): pass +class MissingAttachment(Exception): pass +class TooManyAttachments(Exception): pass +class Continue(Exception): pass