diff options
Diffstat (limited to 'base/exceptions.py')
| -rw-r--r-- | base/exceptions.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/base/exceptions.py b/base/exceptions.py index 471dd0e..221b73e 100644 --- a/base/exceptions.py +++ b/base/exceptions.py @@ -2,3 +2,8 @@ class ModuleError(Exception): def __init__(self, reason, error): self.reason = reason self.error = error + +class ExecutionException(Exception): + def __init__(self, e, message): + self.e = e + self.message = message
\ No newline at end of file |
