This method is intended to process an unhandled "page" level exception by redirecting the exception to either the specified error page for this JSP, or if none was specified, to perform some implementation dependent action.
A JSP implementation class shall typically clean up any local state prior to invoking this and will return immediately thereafter. It is illegal to generate any output to the client, or to modify any ServletResponse state after invoking this call.
This method is kept for backwards compatiblity reasons. Newly generated code should use PageContext.handlePageException(Throwable). @param e the exception to be handled @throws ServletException @throws IOException @throws NullPointerException if the exception is null @throws SecurityException if target resource cannot be accessed by caller @see #handlePageException(Throwable)
|
|
|
|
|
|