try
{
final ResourceLimitingThreadPool threadPool = new ResourceLimitingThreadPool(
name, max, maxStrict, blocking, blockTimeout, trimInterval );
threadPool.setDaemon( isDaemon );
threadPool.enableLogging( getLogger() );
threadPools.put( name, threadPool );
}
catch( final Exception e )
{
final String message = "Error creating ThreadPool named " + name;