summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/AdapterRegistryI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-09-20 05:55:29 +0000
committerMichi Henning <michi@zeroc.com>2002-09-20 05:55:29 +0000
commitb56ebf2776fbd2b6dcb9b793c03511e49b265053 (patch)
treed58e5e9b5e95d6b640c36447bc594684c1b255f1 /cpp/src/IcePack/AdapterRegistryI.cpp
parentRemoved idempotent qualifier from destroy operations. (diff)
downloadice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.bz2
ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.xz
ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.zip
Renamed Ice::LocalException to Ice::RuntimeException.
Diffstat (limited to 'cpp/src/IcePack/AdapterRegistryI.cpp')
-rw-r--r--cpp/src/IcePack/AdapterRegistryI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePack/AdapterRegistryI.cpp b/cpp/src/IcePack/AdapterRegistryI.cpp
index dc1884a99ce..a9271afdbb2 100644
--- a/cpp/src/IcePack/AdapterRegistryI.cpp
+++ b/cpp/src/IcePack/AdapterRegistryI.cpp
@@ -42,7 +42,7 @@ IcePack::AdapterRegistryI::add(const string& name, const AdapterPrx& adapter, co
return;
}
- catch(const Ice::LocalException&)
+ catch(const Ice::RuntimeException&)
{
}
throw AdapterExistsException();
@@ -88,7 +88,7 @@ IcePack::AdapterRegistryI::findByName(const string& name, const Ice::Current&)
{
_dict.erase(p);
}
- catch(const Ice::LocalException&)
+ catch(const Ice::RuntimeException&)
{
return AdapterPrx::uncheckedCast(p->second);
}