diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-12-19 16:25:36 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-12-19 16:25:36 +0000 |
commit | 9b810dc117c11967759c85280ba7c780f050b013 (patch) | |
tree | 71de09d58f26bd0c96759fc48ef2515e7f2c0b6c /cpp/src/IcePack/ExceptionFactory.cpp | |
parent | Removed Yellow + clear the servant locator map in ObjectAdapter. (diff) | |
download | ice-9b810dc117c11967759c85280ba7c780f050b013.tar.bz2 ice-9b810dc117c11967759c85280ba7c780f050b013.tar.xz ice-9b810dc117c11967759c85280ba7c780f050b013.zip |
Removed Yellow.
Diffstat (limited to 'cpp/src/IcePack/ExceptionFactory.cpp')
-rw-r--r-- | cpp/src/IcePack/ExceptionFactory.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/src/IcePack/ExceptionFactory.cpp b/cpp/src/IcePack/ExceptionFactory.cpp index a97b9b456f8..6e4387b3330 100644 --- a/cpp/src/IcePack/ExceptionFactory.cpp +++ b/cpp/src/IcePack/ExceptionFactory.cpp @@ -25,7 +25,6 @@ IcePack::ExceptionFactory::ExceptionFactory(const Ice::CommunicatorPtr& communic communicator->addUserExceptionFactory(this, "::IcePack::AdapterDeploymentException"); communicator->addUserExceptionFactory(this, "::IcePack::ServerDeploymentException"); communicator->addUserExceptionFactory(this, "::IcePack::ObjectDeploymentException"); - communicator->addUserExceptionFactory(this, "::IcePack::OfferDeploymentException"); } void @@ -43,10 +42,6 @@ IcePack::ExceptionFactory::createAndThrow(const string& type) { throw AdapterDeploymentException(); } - else if(type == "::IcePack::OfferDeploymentException") - { - throw OfferDeploymentException(); - } else if(type == "::IcePack::ObjectDeploymentException") { throw ObjectDeploymentException(); |