* invalid or named pool does not exist
*/
public ThreadPool getThreadPool( final String name )
throws IllegalArgumentException
{
final ThreadPool threadPool = (ThreadPool)m_threadPools.get( name );
if( null == threadPool )
{
final String message = "Unable to locate ThreadPool named " + name;
throw new IllegalArgumentException( message );