Exception avec ArrayIndexOutOfBoundsException
Gérer l'exception ArrayIndexOutOfBoundsException
<%
try {
int array[] = new int[10];
array[100] = 100;
} catch (ArrayIndexOutOfBoundsException e) {
out.println("Dépassement de la capacité du tableau.");
}
%>