How to recognise errors and construct a page corrosponding to that error
Rinku Sharma
Greenhorn
Joined: Mar 30, 2001
Posts: 18
posted
0
hi , I am not able to catch the errors thrown by the JSP page and construct an error page corrosponding to that. I have made an error page also which i am calling from my main Jsp page but how do i catch the runtime errors if any . URGENT Amit
maha anna
Ranch Hand
Joined: Jan 31, 2000
Posts: 1467
posted
0
Amit, Assume main.jsp is the main jsp file which may create some runtime exceptions and errorHandle.jsp is your error catcher! When an exception is created in main.jsp, the corresponding "errorPage" arrtibute file in <@page directive is called .The details of the exception are available with a pre-defined object named "exception" to the errorHandle.jsp. Here is a sample code.