summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-05 15:18:25 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-05 15:18:25 (GMT)
commit799ca6d265d7a362526d66e7f615f914695b867e (patch)
tree357afa5281dcfe72c7fee3e12c75505eca8dea1a /src/uscxml/Interpreter.h
parent83ef70ebc7527240f56e2e601777a613bce6e47e (diff)
downloaduscxml-799ca6d265d7a362526d66e7f615f914695b867e.zip
uscxml-799ca6d265d7a362526d66e7f615f914695b867e.tar.gz
uscxml-799ca6d265d7a362526d66e7f615f914695b867e.tar.bz2
Catch std::exception before ... and output e.what()
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index c3acc98..66379f9 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -443,6 +443,7 @@ protected:
class DOMEventListener : public Arabica::DOM::Events::EventListener<std::string> {
public:
+ DOMEventListener() : _interpreter(NULL) {}
void handleEvent(Arabica::DOM::Events::Event<std::string>& event);
InterpreterImpl* _interpreter;
};