From 918a2229db3f14de07c1fc6aeebd90d3e89d5bfd Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 8 Nov 2017 22:32:48 -0500 Subject: [PATCH] Added WIP NSFW exception --- src/main/misc/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/misc/exceptions.py b/src/main/misc/exceptions.py index f90480a..7f9665c 100644 --- a/src/main/misc/exceptions.py +++ b/src/main/misc/exceptions.py @@ -5,6 +5,10 @@ async def send_error(ctx, error): await ctx.send('{}\n```\n{}```'.format(base, error)) +# class NSFW(errext.CheckFailure): +# pass + + class Wrong(Exception): pass