i have created a jsp contains
<%
int i=10;
if(i==10)
throw new ArithmeticException("ItsMyGenExcepetion");
%>
i have made entry in web.xml
<error-page>
<exception-type>java.lang.ArithmeticException</exception-type>
<location>/errordisplay.jsp</location>
</error-page>
i have my errordisply.jsp contains
<%@ page isErrorPage="true" %>
in body
The page contain error <%= exception %>
but its not showing the error page....