Building a simple error handling page.
<%
try{
int value = 1;
value = value / 0;
}
catch (Exception e){
System.out.println(e.getMessage());
}
%>