summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-06-19 16:26:19 -0230
committerDwayne Boone <dwayne@zeroc.com>2007-06-19 16:26:19 -0230
commit6653c4246966ad65a871f8e55aab087f98b34dd9 (patch)
tree2f6c238ae05e34100ef45e6c7c60e9f756eebd09 /cpp/src/Ice/ThreadPool.cpp
parentFor UDP multicast bind to the multicast address rather than 0.0.0.0 unless on... (diff)
downloadice-6653c4246966ad65a871f8e55aab087f98b34dd9.tar.bz2
ice-6653c4246966ad65a871f8e55aab087f98b34dd9.tar.xz
ice-6653c4246966ad65a871f8e55aab087f98b34dd9.zip
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2140 - Remove code no longer required nowa
that IceUtil::Exception inherits from std::exception
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index 59d479ce841..9d2cd3bff6a 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -1061,16 +1061,10 @@ IceInternal::ThreadPool::EventHandlerThread::run()
{
promote = _pool->run();
}
- catch(const Exception& ex)
- {
- Error out(_pool->_instance->initializationData().logger);
- out << "exception in `" << _pool->_prefix << "':\n" << ex;
- promote = true;
- }
catch(const std::exception& ex)
{
Error out(_pool->_instance->initializationData().logger);
- out << "std::exception in `" << _pool->_prefix << "':\n" << ex.what();
+ out << "exception in `" << _pool->_prefix << "':\n" << ex.what();
promote = true;
}
catch(...)