<HTML>
<HEAD>
<TITLE>Multiple try/catch in Jsp</TITLE>
</HEAD>
<BODY>
<FONT SIZE="6" COLOR="#CC3300">Multiple try/catch in Jsp</FONT><br>
<%
try {
int a[] =new int[6];
for(int i = 0; i<7; i++){
a[i]=i;
}
} catch (ArrayIndexOutOfBoundsException e) {
out.println("Array index out of bounds.");
} catch(ArithmeticException e) {
out.println("Arithmetic exception: " + e);
} catch(Exception e) {
out.println("An error occurred: " + e);
}
%>
</BODY>
</HTML>
|