aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-08 00:15:34 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-08 00:15:34 +0300
commit4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b (patch)
tree68f76c818c0ac838df3c2b1762df4501fbb5f69e
parent5f73db97e819b2beda615862faadcd065ddd48df (diff)
downloadmeson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.zip
meson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.tar.gz
meson-4b4c2d9d901d2b1e407bbcdd43bdd4e9c7fa294b.tar.bz2
Add back missing exception type.
-rw-r--r--interpreter.py3
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 = {}