Untitled
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(); }
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(); }