Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Saturday, December 1, 2007

java code for Simple error testing

//File: index.jsp
<%@ page errorPage="errPage.jsp" %>

Simple error testing

<%!
String nullString = null;
%>
<%-- Intentionally invoking a NullPointerException --%>
The length of the nullString is <%= nullString.length() %>



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

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

No comments: