Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How does JSP handle run-time exceptions?
How does JSP handle run-time exceptions?
✍: 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.
2013-07-25, 2140👍, 0💬
Popular Posts:
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...
What are the five levels in CMMI? There are five levels of the CMM. According to the SEI, Level 1 – ...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
Can an anonymous class be declared as implementing an interface and extending a class? An anonymous ...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...