diff options
-rw-r--r-- | interpreter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/interpreter.py b/interpreter.py index c99178f..bd5b815 100644 --- a/interpreter.py +++ b/interpreter.py @@ -27,6 +27,9 @@ class InterpreterException(coredata.MesonException): class InvalidCode(InterpreterException): pass +class InvalidArguments(InterpreterException): + pass + class InterpreterObject(): def __init__(self): self.methods = {} |