1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-12-24 14:27:27 +00:00

Added Execute and Evaluate exceptions to be caught in the command

This commit is contained in:
Myned 2017-10-20 16:25:12 -04:00
parent 12c577d9b1
commit 8b0d3d5bb3

View file

@ -5,6 +5,14 @@ async def send_error(ctx, error):
await ctx.send('{}\n```\n{}```'.format(base, error))
class Execute(Exception):
pass
class Evaluate(Exception):
pass
class Left(Exception):
pass