improved diagnostic

This commit is contained in:
Jeff Hill
2003-04-16 22:59:13 +00:00
parent 6ab92a6dab
commit 0fd1f0103d
+3 -3
View File
@@ -229,14 +229,14 @@ caStatus casStrmClient::processMsg ()
status = this->sendErr ( guard,
this->ctx.getMsg(), invalidResID, ECA_ALLOCMEM,
"inablility to allocate memory in "
"the server disconnected client" );
"the CA server - disconnected client" );
status = S_cas_noMemory;
}
catch ( std::exception & except ) {
status = this->sendErr ( guard,
this->ctx.getMsg(), invalidResID, ECA_INTERNAL,
"C++ exception \"%s\" in server "
"diconnected client",
"C++ exception \"%s\" in server - "
"disconnected client",
except.what () );
status = S_cas_internal;
}