2017-11-09 03:33:27 +00:00
|
|
|
from discord.ext.commands import errors as errext
|
|
|
|
|
2017-11-06 07:00:58 +00:00
|
|
|
base = '\N{WARNING SIGN} **An internal error has occurred.** This has been reported to my master. \N{WOLF FACE}'
|
2017-09-24 15:05:28 +00:00
|
|
|
|
2017-10-13 02:26:22 +00:00
|
|
|
|
2017-10-15 01:54:18 +00:00
|
|
|
async def send_error(ctx, error):
|
2017-10-20 20:25:12 +00:00
|
|
|
await ctx.send('{}\n```\n{}```'.format(base, error))
|
|
|
|
|
|
|
|
|
2017-11-09 03:32:48 +00:00
|
|
|
# class NSFW(errext.CheckFailure):
|
|
|
|
# pass
|
|
|
|
|
2017-11-20 07:12:56 +00:00
|
|
|
class SizeError(Exception):
|
|
|
|
pass
|
|
|
|
|
2017-11-09 03:32:48 +00:00
|
|
|
|
2017-11-06 07:04:17 +00:00
|
|
|
class Wrong(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Add(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-10-20 20:25:12 +00:00
|
|
|
class Execute(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Evaluate(Exception):
|
|
|
|
pass
|
2017-10-15 01:54:18 +00:00
|
|
|
|
|
|
|
|
2017-10-13 02:26:22 +00:00
|
|
|
class Left(Exception):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Right(Exception):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Save(Exception):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GoTo(Exception):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class Exists(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class MissingArgument(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-15 17:30:40 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class FavoritesNotFound(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-16 06:06:50 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class PostError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class ImageError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class MatchError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class TagBlacklisted(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class BoundsError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class TagBoundsError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class TagExists(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class TagError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class FlagError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class BlacklistError(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class NotFound(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class Timeout(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class InvalidVideoFile(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class MissingAttachment(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class TooManyAttachments(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
2017-11-09 03:33:27 +00:00
|
|
|
class CheckFail(errext.CommandError):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Abort(Exception):
|
2017-10-30 04:22:34 +00:00
|
|
|
def __init__(self, message=None):
|
|
|
|
self.message = message
|
2017-10-13 02:26:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Continue(Exception):
|
2017-10-20 20:25:12 +00:00
|
|
|
pass
|