1 Reply Latest reply on Nov 9, 2006 1:51 PM by gavin.king

    exceptions.xml broken http-error

    codelion

      In jboss-seam-CVS.20061105 in package org.jboss.seam.core in class Exceptions on line 172

      final int code = Integer.parseInt( error.attributeValue("view-id") );


      causes

      java.lang.NumberFormatException: null

      because (I assume) after

      Element error = exception.element("http-error");


      it intstead should be

      final int code = Integer.parseInt( error.attributeValue("errorCode") );