JSP Java Tutorial

index.jsp

<%@ page errorPage="errorPage.jsp" %>

    
        Using the exception Object
    
    
        

Using the exception Object


        <%
            int value = 1;
            value = value / 0;
        %>
    

errorPage.jsp

<%@ page isErrorPage="true" %>

    
        An Error Page Using the exception Object
    
    
        

An Error Page Using the exception Object


        An error occurred: <%= exception.toString() %>