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") );

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984615#3984615

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984615
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to