diff options
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; |