Untitled

mail@pastecode.io avatar
unknown
java
3 years ago
298 B
3
Indexable
try {
            System.out.println(1);
            throw new RuntimeException();
        } catch (RuntimeException e) {
            System.out.println(2);
            throw new RuntimeException();
        } finally {
            System.out.println(3);
            throw new Exception();
        }