summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-05-01 18:04:57 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-05-01 18:04:57 (GMT)
commitd3c26451c60e6f70a65f030f94d16105c0cb4f3a (patch)
tree3f514d68f38450a0a3973a801b632933ebda2149 /src/uscxml/Interpreter.cpp
parent6e1d8d25d4e7b65ca67b5d5c529ba0bedb81feb9 (diff)
downloaduscxml-d3c26451c60e6f70a65f030f94d16105c0cb4f3a.zip
uscxml-d3c26451c60e6f70a65f030f94d16105c0cb4f3a.tar.gz
uscxml-d3c26451c60e6f70a65f030f94d16105c0cb4f3a.tar.bz2
Fixed issue115
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index d21b633..c29c2ec 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -170,13 +170,13 @@ Interpreter Interpreter::fromURL(const std::string& url) {
}
catch (const XERCESC_NS::SAXParseException& toCatch) {
- LOGD(USCXML_ERROR) << X(toCatch.getMessage()) << std::endl;
+ ERROR_PLATFORM_THROW(X(toCatch.getMessage()));
} catch (const XERCESC_NS::RuntimeException& toCatch) {
- LOGD(USCXML_ERROR) << X(toCatch.getMessage()) << std::endl;
+ ERROR_PLATFORM_THROW(X(toCatch.getMessage()));
} catch (const XERCESC_NS::XMLException& toCatch) {
- LOGD(USCXML_ERROR) << X(toCatch.getMessage()) << std::endl;
+ ERROR_PLATFORM_THROW(X(toCatch.getMessage()));
} catch (const XERCESC_NS::DOMException& toCatch) {
- LOGD(USCXML_ERROR) << X(toCatch.getMessage()) << std::endl;
+ ERROR_PLATFORM_THROW(X(toCatch.getMessage()));
}
return interpreter;