Changed NotImplementedError to Exception.
diff --git a/scripts/run.py b/scripts/run.py
index d683cd2..be098fd 100755
--- a/scripts/run.py
+++ b/scripts/run.py
@@ -65,7 +65,7 @@
       elif extension == '.wast':
         wast_file = options.in_file
       else:
-        raise NotImplementedError('unimplemented input file type: %s' % options.in_file)
+        raise Exception('unimplemented input file type: %s' % options.in_file)
 
       wasm_file = os.path.join(temp_dir, basename + '.wasm')