diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-08-30 13:58:24 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-08-30 13:58:24 +0000 |
commit | 5345b998c8a46d7a7d6b351dc30db2726c2925cf (patch) | |
tree | 9c1722c6cdcabc84f0b33f24ccf4deb9054a5fca /cpp/src/IceGrid/Topics.cpp | |
parent | Remove __setNoDelete(false) calls (diff) | |
download | ice-5345b998c8a46d7a7d6b351dc30db2726c2925cf.tar.bz2 ice-5345b998c8a46d7a7d6b351dc30db2726c2925cf.tar.xz ice-5345b998c8a46d7a7d6b351dc30db2726c2925cf.zip |
More work on IceGrid patching.
Diffstat (limited to 'cpp/src/IceGrid/Topics.cpp')
-rw-r--r-- | cpp/src/IceGrid/Topics.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/Topics.cpp b/cpp/src/IceGrid/Topics.cpp index 0240d9ad031..78bb60155c0 100644 --- a/cpp/src/IceGrid/Topics.cpp +++ b/cpp/src/IceGrid/Topics.cpp @@ -281,11 +281,21 @@ RegistryObserverTopic::applicationUpdated(int serial, const ApplicationUpdateDes } } } + catch(const DeploymentException& ex) + { + cerr << ex.reason << endl; + //assert(false); + } catch(const std::string& msg) { cerr << msg << endl; //assert(false); } + catch(const char* msg) + { + cerr << msg << endl; + //assert(false); + } catch(...) { assert(false); |