summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/IceGridNode.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-01-10 15:42:06 +0100
committerBenoit Foucher <benoit@zeroc.com>2008-01-10 15:42:06 +0100
commit5fffe43155bf1d4f74116cbc9a7fc52cf3868159 (patch)
treeb9e0f02997a91ffa853aab7c4f9c169798b46f0b /cpp/src/IceGrid/IceGridNode.cpp
parentSome more changes wrt use of mcpp (diff)
downloadice-5fffe43155bf1d4f74116cbc9a7fc52cf3868159.tar.bz2
ice-5fffe43155bf1d4f74116cbc9a7fc52cf3868159.tar.xz
ice-5fffe43155bf1d4f74116cbc9a7fc52cf3868159.zip
Fixed bug 2629
Diffstat (limited to 'cpp/src/IceGrid/IceGridNode.cpp')
-rw-r--r--cpp/src/IceGrid/IceGridNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp
index 0ac32aae283..054c0f9136f 100644
--- a/cpp/src/IceGrid/IceGridNode.cpp
+++ b/cpp/src/IceGrid/IceGridNode.cpp
@@ -623,10 +623,10 @@ NodeService::start(int argc, char* argv[])
<< "registry database is locked by `" << ex.lockUserId << "'";
warning(ostr.str());
}
- catch(const LocalException& ex)
+ catch(const std::exception& ex)
{
ostringstream ostr;
- ostr << "failed to deploy application `" << desc << "':\n" << ex;
+ ostr << "failed to deploy application `" << desc << "':\n" << ex.what();
warning(ostr.str());
}
catch(const string& reason)