Multiple try/catch in Jsp
<% 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); } %>