diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-04-06 20:32:56 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-04-06 20:32:56 +0300 |
| commit | 629d55e3c9004f2260fce7233f1ceef8033d7afd (patch) | |
| tree | 32fb52715b1315e5d9c613f3835668aa446f98de | |
| parent | 1725a03fda859f4f41d5be8dad9d0956a76aa1af (diff) | |
| download | meson-629d55e3c9004f2260fce7233f1ceef8033d7afd.tar.gz | |
Inherit InterpreterException from MesonException.
| -rwxr-xr-x | interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py index fe4af4092..730857380 100755 --- a/interpreter.py +++ b/interpreter.py @@ -21,7 +21,7 @@ import coredata import dependencies import os, sys, platform, copy -class InterpreterException(Exception): +class InterpreterException(coredata.MesonException): pass class InvalidCode(InterpreterException): |
