You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2013/02/11 17:08:20 UTC

svn commit: r1444842 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp

Author: tabish
Date: Mon Feb 11 16:08:20 2013
New Revision: 1444842

URL: http://svn.apache.org/r1444842
Log:
fix wrong text in exception message. 

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp?rev=1444842&r1=1444841&r2=1444842&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/util/concurrent/ThreadPoolExecutor.cpp Mon Feb 11 16:08:20 2013
@@ -1628,7 +1628,7 @@ RejectedExecutionHandler* ThreadPoolExec
 void ThreadPoolExecutor::setRejectedExecutionHandler(RejectedExecutionHandler* handler) {
 
     if (handler == NULL) {
-        throw NullPointerException(__FILE__, __LINE__, "Cannot assign a NULL ThreadFactory.");
+        throw NullPointerException(__FILE__, __LINE__, "Cannot assign a NULL RejectedExecutionHandler.");
     }
 
     if (handler != this->kernel->rejectionHandler) {