summaryrefslogtreecommitdiffstats
path: root/apps/uscxml-transform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/uscxml-transform.cpp')
-rw-r--r--apps/uscxml-transform.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/uscxml-transform.cpp b/apps/uscxml-transform.cpp
index 9395f76..69e0c97 100644
--- a/apps/uscxml-transform.cpp
+++ b/apps/uscxml-transform.cpp
@@ -372,7 +372,9 @@ int main(int argc, char** argv) {
} catch (Event e) {
std::cout << e << std::endl;
- }
+ } catch (const std::exception &e) {
+ std::cout << e.what() << std::endl;
+ }
return EXIT_SUCCESS;
} \ No newline at end of file