Datasets:

ArXiv:
License:
File size: 382 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class TryCatchStatements {
    public static void main(String args[]) {
        int[] array = new int[3];
        try {
            array[7] = 3;
        } catch (ArrayIndexOutOfBoundsException e) {
            System.out.println("Array index is out of bounds!");
        } finally {
            System.out.println("The array is of size " + array.length);
        }
    }

}