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

Added Abort exception init for passing message

This commit is contained in:
Myned 2017-10-30 00:22:34 -04:00
parent 80f15032f0
commit 5d053f2ca8

View file

@ -106,7 +106,8 @@ class CheckFail(Exception):
class Abort(Exception): class Abort(Exception):
pass def __init__(self, message=None):
self.message = message
class Continue(Exception): class Continue(Exception):