diff options
author | Michi Henning <michi@zeroc.com> | 2002-09-20 05:55:29 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-09-20 05:55:29 +0000 |
commit | b56ebf2776fbd2b6dcb9b793c03511e49b265053 (patch) | |
tree | d58e5e9b5e95d6b640c36447bc594684c1b255f1 /cpp/src/IcePack/ServerBuilder.cpp | |
parent | Removed idempotent qualifier from destroy operations. (diff) | |
download | ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.bz2 ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.xz ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.zip |
Renamed Ice::LocalException to Ice::RuntimeException.
Diffstat (limited to 'cpp/src/IcePack/ServerBuilder.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerBuilder.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IcePack/ServerBuilder.cpp b/cpp/src/IcePack/ServerBuilder.cpp index 159c4b20014..e37a12f1db6 100644 --- a/cpp/src/IcePack/ServerBuilder.cpp +++ b/cpp/src/IcePack/ServerBuilder.cpp @@ -52,7 +52,7 @@ public: ex.reason = os.str(); throw ex; } - catch(const Ice::LocalException& lex) + catch(const Ice::RuntimeException& lex) { ostringstream os; os << "couldn't contact the server registry:\n" << lex << endl; @@ -81,7 +81,7 @@ public: ex.reason = os.str(); throw ex; } - catch(const Ice::LocalException& lex) + catch(const Ice::RuntimeException& lex) { ostringstream os; os << "couldn't contact the server registry:\n" << lex; @@ -131,7 +131,7 @@ public: ex.reason = os.str(); throw ex; } - catch(const Ice::LocalException& lex) + catch(const Ice::RuntimeException& lex) { ostringstream os; os << "couldn't contact the adapter registry: " << lex << endl; @@ -160,7 +160,7 @@ public: ex.reason = os.str(); throw ex; } - catch(const Ice::LocalException& lex) + catch(const Ice::RuntimeException& lex) { ostringstream os; os << "couldn't contact the adapter registry:\n" << lex; @@ -465,7 +465,7 @@ IcePack::ServerBuilder::undo() ex.reason = os.str(); throw ex; } - catch(const Ice::LocalException& lex) + catch(const Ice::RuntimeException& lex) { ostringstream os; os << "couldn't contact the server registry:\n" << lex; @@ -488,7 +488,7 @@ IcePack::ServerBuilder::undo() { _server->destroy(); } - catch(const Ice::LocalException&) + catch(const Ice::RuntimeException&) { // // This shouldn't happen. TODO: print a warning if this |