diff options
Diffstat (limited to 'cpp/src/IcePack/NodeInfo.cpp')
-rw-r--r-- | cpp/src/IcePack/NodeInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/NodeInfo.cpp b/cpp/src/IcePack/NodeInfo.cpp index 3925a0424d1..2f6cd5098b3 100644 --- a/cpp/src/IcePack/NodeInfo.cpp +++ b/cpp/src/IcePack/NodeInfo.cpp @@ -59,7 +59,7 @@ IcePack::NodeInfo::getAdapterRegistry() const return AdapterRegistryPrx::checkedCast( _communicator->stringToProxy("IcePack/AdapterRegistry@IcePack.Registry.Internal")); } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { return 0; } @@ -73,7 +73,7 @@ IcePack::NodeInfo::getServerRegistry() const return ServerRegistryPrx::checkedCast( _communicator->stringToProxy("IcePack/ServerRegistry@IcePack.Registry.Internal")); } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { return 0; } @@ -89,7 +89,7 @@ IcePack::NodeInfo::getYellowQuery() const { return Yellow::QueryPrx::checkedCast(_communicator->stringToProxy("Yellow/Query@Yellow.Query")); } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { return 0; } @@ -105,7 +105,7 @@ IcePack::NodeInfo::getYellowAdmin() const { return Yellow::AdminPrx::checkedCast(_communicator->stringToProxy("Yellow/Admin@Yellow.Admin")); } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { return 0; } |