Simple error testing : Errors « JSP « Java






Simple error testing

//File: index.jsp
<%@ page errorPage="errPage.jsp" %>
<HTML>
<HEAD><TITLE> Simple error testing </TITLE></HEAD>
<BODY>
<%! 
   String nullString = null;
%>
<%-- Intentionally invoking a NullPointerException --%>
The length of the nullString is <%= nullString.length() %>
</BODY>
</HTML>

/////////////////////////////////////////////////////
//File: errPage.jsp
<%@ page isErrorPage="true" %>

Uncaught exception <%= exception %> has been encountered!

           
       








DealWithErrorInJsp.zip( 88 k)

Related examples in the same category

1.Jsp Error Bean
2.Using an Error Page Jsp
3.Using the Exception Object in Jsp
4.Building a simple error handling page
5.Deal with the errors
6.Error without handler
7.JSP Error handler
8.Error Handling: compile error in JSP page
9.JSP error: no such page
10.Page with error in JSP directive and actions
11.JSP error detected
12.Advanced Dynamic Web Content Generation: form error checkAdvanced Dynamic Web Content Generation: form error check