summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index dbc24fa904c..533a7e8e61b 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -462,7 +462,7 @@ IceInternal::ThreadPool::run()
goto repeatSelect;
}
}
- catch (const LocalException& ex)
+ catch (const LocalException&)
{
// Ignore exeptions.
}
@@ -564,7 +564,7 @@ IceInternal::ThreadPool::EventHandlerThread::run()
{
_pool->run();
}
- catch (const LocalException& ex)
+ catch (const Exception& ex)
{
ostringstream s;
s << "exception in thread pool:\n" << ex;
@@ -573,7 +573,7 @@ IceInternal::ThreadPool::EventHandlerThread::run()
catch (const JTCException& ex)
{
ostringstream s;
- s << "exception in thread pool:\n" << ex;
+ s << "JThreads/C++ exception in thread pool:\n" << ex;
_pool->_instance->logger()->error(s.str());
}
catch (...)