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