diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Ice/Service.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/src/Ice/Service.cpp b/cpp/src/Ice/Service.cpp index 278b9831191..260ce660ed5 100644 --- a/cpp/src/Ice/Service.cpp +++ b/cpp/src/Ice/Service.cpp @@ -850,21 +850,21 @@ Ice::Service::run(int argc, const char* const argv[], const InitializationData& catch(const std::exception& ex) { ServiceError err(this); - err << "service caught unhandled exception:\n" << ex; + err << "service terminating after catching exception:\n" << ex; } catch(const std::string& msg) { ServiceError err(this); - err << "service caught unhandled exception:\n" << msg; + err << "service terminating after catching exception:\n" << msg; } catch(const char* msg) { ServiceError err(this); - err << "service caught unhandled exception:\n" << msg; + err << "service terminating after catching exception:\n" << msg; } catch(...) { - error("service caught unhandled C++ exception"); + error("service terminating after catching unknown exception"); } if(_communicator) @@ -1372,11 +1372,11 @@ Ice::Service::serviceMain(int argc, const wchar_t* const argv[]) catch(const std::exception& ex) { ServiceError err(this); - err << "service caught unhandled std::exception:\n" << ex; + err << "service terminating after catching exception:\n" << ex; } catch(...) { - error("service caught unhandled C++ exception"); + error("service terminating after catching unknown exception"); } delete[] args; @@ -1820,12 +1820,12 @@ Ice::Service::runDaemon(int argc, char* argv[], const InitializationData& initDa catch(const std::exception& ex) { ServiceError err(this); - err << "service caught unhandled std::exception:\n" << ex; + err << "service terminating after catching exception:\n" << ex; errMsg = err.str(); } catch(...) { - errMsg = "service caught unhandled C++ exception"; + errMsg = "service terminating after catching unknown exception"; error(errMsg); } |