, , . . , errorHandler.jsp , one.jsp .
lemme, jsp, , .
one.jsp
<%@ page errorPage="exceptionHandler.jsp" %>
<%
int x=0,y=23;
int z=y/x;
%>
jsp , , . .
if(request.getParameter("e")==null)
{
throw new Exception();
}
exceptionHandler.jsp
<html>
<body>
<%-- Log error on server side --%>
<%
//When the page attribute "isErrorPage" is set to "true" the exception object is available
System.err.println("Error : " + exception.getMessage());
%>
<%-- Display generic error to client --%>
<b>An error occur !</b>
</body>
</html>