Untitled
unknown
java
3 years ago
298 B
5
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...