diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
commit | d99db9620ba052e79cd5bd40c75306f600f9c48c (patch) | |
tree | 8b5bf4d7b52f1e60469cb48e6b466e7f4b08c41f /cpp/src/IcePack/NodeInfo.cpp | |
parent | minor (diff) | |
download | ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2 ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip |
Runtime->Local
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; } |