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/AdminI.cpp | |
parent | minor (diff) | |
download | ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2 ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip |
Runtime->Local
Diffstat (limited to 'cpp/src/IcePack/AdminI.cpp')
-rw-r--r-- | cpp/src/IcePack/AdminI.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/src/IcePack/AdminI.cpp b/cpp/src/IcePack/AdminI.cpp index 9a54662dce2..f09b89c5f96 100644 --- a/cpp/src/IcePack/AdminI.cpp +++ b/cpp/src/IcePack/AdminI.cpp @@ -70,7 +70,7 @@ IcePack::AdminI::removeServer(const string& name, const Current&) { throw ServerNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -102,7 +102,7 @@ IcePack::AdminI::getServerState(const string& name, const Current&) const { throw ServerNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -120,7 +120,7 @@ IcePack::AdminI::getServerPid(const string& name, const Current&) const { throw ServerNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -138,7 +138,7 @@ IcePack::AdminI::startServer(const string& name, const Current&) { throw ServerNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -156,7 +156,7 @@ IcePack::AdminI::stopServer(const string& name, const Current&) { throw ServerNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -180,7 +180,7 @@ IcePack::AdminI::getAdapterEndpoints(const string& name, const Current&) const { throw AdapterNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } @@ -205,7 +205,7 @@ IcePack::AdminI::pingNode(const string& name, const Current&) const { throw NodeNotExistException(); } - catch(const Ice::RuntimeException& ex) + catch(const Ice::LocalException& ex) { return false; } @@ -223,7 +223,7 @@ IcePack::AdminI::shutdownNode(const string& name, const Current&) { throw NodeNotExistException(); } - catch(const Ice::RuntimeException&) + catch(const Ice::LocalException&) { throw NodeUnreachableException(); } |