[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2530) Exception is swallowed in Components.java, because #0 is missing in log.debug string

Tobias Kilian (JIRA) jira-events at lists.jboss.org
Thu Jan 24 10:23:21 EST 2008


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

        



More information about the seam-issues mailing list