Untitled

Anonymous
java
04/14/2022 8:28 AM
400 B
18
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();
        }
Editor is loading...