diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-08 00:15:34 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-10-08 00:15:34 +0300 |
commit | 4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b (patch) | |
tree | 68f76c818c0ac838df3c2b1762df4501fbb5f69e | |
parent | 5f73db97e819b2beda615862faadcd065ddd48df (diff) | |
download | meson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.zip meson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.tar.gz meson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.tar.bz2 |
Add back missing exception type.
-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 = {} |