diff options
author | Jose <jose@zeroc.com> | 2018-07-26 13:42:37 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-07-26 13:42:37 +0200 |
commit | 7d8142a7797d6eef4818c28e6e3770019647a5d5 (patch) | |
tree | 9ede3bcf5f97ba5a153f41e203cf327722681576 /cpp/src/IceGrid/Topics.cpp | |
parent | Simplify EndpointHostResolver initialization (diff) | |
download | ice-7d8142a7797d6eef4818c28e6e3770019647a5d5.tar.bz2 ice-7d8142a7797d6eef4818c28e6e3770019647a5d5.tar.xz ice-7d8142a7797d6eef4818c28e6e3770019647a5d5.zip |
Eliminate catch(const char*) #48
Diffstat (limited to 'cpp/src/IceGrid/Topics.cpp')
-rw-r--r-- | cpp/src/IceGrid/Topics.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cpp/src/IceGrid/Topics.cpp b/cpp/src/IceGrid/Topics.cpp index 142f1a72135..83c1d89ac9f 100644 --- a/cpp/src/IceGrid/Topics.cpp +++ b/cpp/src/IceGrid/Topics.cpp @@ -730,18 +730,6 @@ ApplicationObserverTopic::applicationUpdated(Ice::Long dbSerial, const Applicati out << "unexpected exception while instantiating application `" << info.descriptor.name << "':\n" << ex.what(); assert(false); } - catch(const std::string& msg) - { - Ice::Error out(_logger); - out << "unexpected exception while instantiating application `" << info.descriptor.name << "':\n" << msg; - assert(false); - } - catch(const char* msg) - { - Ice::Error out(_logger); - out << "unexpected exception while instantiating application `" << info.descriptor.name << "':\n" << msg; - assert(false); - } catch(...) { Ice::Error out(_logger); |