Answer Posted / guest
You can use the errorPage attribute of the page directive
to have uncaught runtime exceptions automatically forwarded
to an error processing page.
For example:
redirects the browser to the JSP page error.jsp if an
uncaught exception is encountered during request
processing. Within error.jsp, if you indicate that it is an
error-processing page, via the directive:
the Throwable object describing the exception may be
accessed within the error page via the exception implicit
object.
Note: You must always use a relative URL as the value for
the errorPage attribute.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What is jsp include tag?
What are the advantages of jsp?
What is tag file?
How can we retrieve warnings?
What are the two kinds of comments in jsp and what's the difference between them ?
What are the jsp tag?
Which syntax is used to comment jsp?
How we can configure init params in jsp?
What is tld file?
How to retrieve warnings?
What is context in jsp?
How can a thread safe JSP page be implemented?
What are the two types of comments supported by jsp?
How does a jsp function?
How is jsp include directive different from jsp include action. ?