> root cause
> java.lang.NumberFormatException: null
>                 java.lang.Integer.parseInt(Unknown Source)
>                 java.lang.Integer.parseInt(Unknown Source)
>
> org.apache.jsp.check_005fenter_jsp._jspService(check_005fenter_jsp.java:61)
>  ftc.budget.servlet.BudgetJspPage.service(BudgetJspPage.java:71)
>

Go to the /work directory of your Tomcat installation and find
"check_005fenter_jsp.java" file somewhere there. It is Java source for
your JSP page (check/enter.jsp).  Somewhere there (on line 61 of java
code) is a Integer.parseInt() call. The exception was thrown because
the argument to that call was null.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to