Skip to content
Snippets Groups Projects
Commit b9e205e9 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

exception handling in plotter

parent 0b7d3d7c
No related branches found
No related tags found
No related merge requests found
......@@ -723,6 +723,10 @@ namespace armarx
{
ARMARX_WARNING << deactivateSpam(5) << "Caught InvalidChannelException: " << e.what();
}
catch (armarx::UserException& e)
{
ARMARX_WARNING << deactivateSpam(5) << "Caught UserException: " << e.what() << "\nReason: " << e.reason;
}
catch (...)
{
handleExceptions();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment