removed annoying warning when client disconnects while server is processing a send message

This commit is contained in:
Matej Sekoranja
2015-01-07 13:48:44 +01:00
parent 228d7fe279
commit d3fb30d55d

View File

@@ -915,6 +915,9 @@ namespace epics {
// automatic end (to set payload size)
endMessage(false);
}
catch (connection_closed_exception & ) {
throw;
}
catch (std::exception &e ) {
std::ostringstream msg;