< HTML>
Using a try/catch Block
Using a try/catch Block
<%
try{
int int1 = 1;
int1 = int1 / 0;
out.println("The answer is " + int1);
}
catch (Exception e){
out.println("An exception occurred: " + e.getMessage());
}
%>