diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-09-30 02:23:10 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-09-30 02:23:10 +0000 |
commit | 9d8b924dd0d2971e359beca9a7b10720b08a7e0d (patch) | |
tree | 234fc0bcd1d91bf1a991691c7c8e9631a871c474 /cpp/src/IcePack/ServerFactory.cpp | |
parent | Removed DB, cleaned up configuration (diff) | |
download | ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.tar.bz2 ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.tar.xz ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.zip |
Removed DB, cleaned up configuration
Diffstat (limited to 'cpp/src/IcePack/ServerFactory.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerFactory.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IcePack/ServerFactory.cpp b/cpp/src/IcePack/ServerFactory.cpp index 5361356195b..eed23b1ade1 100644 --- a/cpp/src/IcePack/ServerFactory.cpp +++ b/cpp/src/IcePack/ServerFactory.cpp @@ -14,7 +14,6 @@ #include <Ice/Ice.h> #include <IceUtil/UUID.h> -#include <Freeze/DB.h> #include <Freeze/Evictor.h> #include <Freeze/Initialize.h> #include <IcePack/ServerFactory.h> @@ -229,7 +228,7 @@ IcePack::ServerFactory::destroy(const ServerPtr& server, const Ice::Identity& id out << "destroyed server `" << server->description.name << "'"; } } - catch(const Freeze::DBException& ex) + catch(const Freeze::DatabaseException& ex) { ostringstream os; os << "couldn't destroy server `" << server->description.name << "':\n" << ex; @@ -256,7 +255,7 @@ IcePack::ServerFactory::destroy(const ServerAdapterPtr& adapter, const Ice::Iden out << "destroyed server adapter `" << adapter->id << "'"; } } - catch(const Freeze::DBException& ex) + catch(const Freeze::DatabaseException& ex) { ostringstream os; os << "couldn't destroy server adapter `" << adapter->id << "':\n" << ex; |