diff options
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); |