InterviewSolution
Saved Bookmarks
| 1. |
In JSP page how can we handle runtime exception? |
|
Answer» We can use the errorPage attribute of the page directive to have uncaught run-time exceptions automatically forwarded to an error processing page. Example: <% page errorPage = "error.jsp" %> It will redirect the browser to the JSP page error.jsp if an uncaught exception is encountered during request processing. Within error.jsp, will have to indicate that it is an error-processing page, using the directive: <% page isErrorPage="true" %> |
|