User development,

A new message was posted in the thread "ClassPool Refactoring":

http://community.jboss.org/message/518775#518775

Author  : Kabir Khan
Profile : http://community.jboss.org/people/[email protected]

Message:
--------------------------------------------------------------
> mailto:[email protected] wrote:
>  
> I didn't commit the last one because I would like to first know if there is a 
> very good reason for keeping that catch block. Otherwise, I'll remove it as 
> the e.getStackTrace() was causing overhead
It is just to have extra information about which classpool could not find it, 
but you could do that with trace logging instead:
 
catch(NotFoundException e)
{
   if (trace)
      log.trace(classname + " could not be found from " + this, e);
   throw e;
}


--------------------------------------------------------------

To reply to this message visit the message page: 
http://community.jboss.org/message/518775#518775


_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to