Exception is swallowed in Components.java, because #0 is missing in log.debug string
------------------------------------------------------------------------------------
Key: JBSEAM-2530
URL:
http://jira.jboss.com/jira/browse/JBSEAM-2530
Project: JBoss Seam
Issue Type: Bug
Affects Versions: 2.0.1.CR2
Reporter: Tobias Kilian
Priority: Minor
In cvs-version of Component.java line 1970:
catch (Exception e)
{
throw new InstantiationException("Could not instantiate Seam component:
" + name, e);
}
should be:
catch (Exception e)
{
throw new InstantiationException("Could not instantiate Seam component:
#0" + name, e);
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira