1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2025-02-01 10:35:18 +00:00
modufur/src/main/misc/exceptions.py

94 lines
991 B
Python
Raw Normal View History

base = '⚠️ **An internal error has occurred.** Please notify my master! 🐺'
2017-09-24 11:05:28 -04:00
2017-10-12 22:26:22 -04:00
class Left(Exception):
pass
class Right(Exception):
pass
class Save(Exception):
pass
class GoTo(Exception):
pass
class Exists(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 CheckFail(Exception):
pass
class Abort(Exception):
pass
class Continue(Exception):
pass