| Author |
error handling in web.xml
|
Hanna Habashy
Ranch Hand
Joined: Aug 20, 2003
Posts: 532
|
|
hi all: I am trying to add error handling in my web.xml file. here is the code: <error-page> <exception-type>java.lang.Exception</exception-type> <location>/errorPage.jsp</location> </error-page> It is not working correctly. It catch Exceptions, but not RuntimeExceptions. I had to add another code: <error-page> <exception-type>java.lang.RuntimeException</exception-type> <location>/errorPage.jsp</location> </error-page> RuntimeExeption exteds Exception. Shouldn't be cought without adding the second code. thanks
|
SCJD 1.4<br />SCJP 1.4<br />-----------------------------------<br />"With regard to excellence, it is not enough to know, but we must try to have and use it.<br />" Aristotle
|
 |
Leandro Oliveira
Ranch Hand
Joined: Nov 07, 2002
Posts: 298
|
|
|
Hi!! I'm using tomcat 5.0 and it works!!
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: error handling in web.xml
|
|
|