Fix CID 169527 Uncaught Exception

This commit is contained in:
Dennis Klein 2017-05-17 18:45:44 +02:00
parent a9ac1fa91c
commit 2d4282c62d

View File

@ -325,6 +325,10 @@ void Monitor::PrintQueues()
{
cout << "\tno queues found" << endl;
}
catch (std::out_of_range& ie)
{
cout << "\tno queues found" << endl;
}
cout << endl;
}