summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/NodeRegistryI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-20 13:12:50 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-20 13:12:50 +0000
commitd99db9620ba052e79cd5bd40c75306f600f9c48c (patch)
tree8b5bf4d7b52f1e60469cb48e6b466e7f4b08c41f /cpp/src/IcePack/NodeRegistryI.cpp
parentminor (diff)
downloadice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2
ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz
ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip
Runtime->Local
Diffstat (limited to 'cpp/src/IcePack/NodeRegistryI.cpp')
-rw-r--r--cpp/src/IcePack/NodeRegistryI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePack/NodeRegistryI.cpp b/cpp/src/IcePack/NodeRegistryI.cpp
index 4e7377e2afc..eae4cbb2108 100644
--- a/cpp/src/IcePack/NodeRegistryI.cpp
+++ b/cpp/src/IcePack/NodeRegistryI.cpp
@@ -35,7 +35,7 @@ IcePack::NodeRegistryI::NodeRegistryI(const Freeze::DBPtr& db,
{
remove(p->first);
}
- catch(const Ice::RuntimeException& ex)
+ catch(const Ice::LocalException& ex)
{
}
}
@@ -54,7 +54,7 @@ IcePack::NodeRegistryI::add(const string& name, const NodePrx& node, const Ice::
p->second->ice_ping();
throw NodeActiveException();
}
- catch(const Ice::RuntimeException&)
+ catch(const Ice::LocalException&)
{
//
// Node not active.
@@ -155,7 +155,7 @@ IcePack::NodeRegistryI::findByName(const string& name, const Ice::Current&)
catch(const Ice::ObjectNotExistException&)
{
}
- catch(const Ice::RuntimeException&)
+ catch(const Ice::LocalException&)
{
return NodePrx::uncheckedCast(p->second);
}