public class exo3 { static void f() throws InterruptedException { throw new InterruptedException("la solution est ..."); } public static void main(String args[]) { try { f(); } catch (InterruptedException e) { System.out.println("1"); throw new RuntimeException(); } catch (RuntimeException e) { System.out.println("2"); return; } catch (Exception e) { System.out.println("3"); } finally { System.out.println("4"); } System.out.println("5"); } }