Je suis tombé sur un code ressemblant à ceci: void run() { try { doSomething(); } catch (Exception ex) { System.out.println("Error: " + ex); throw ex; } } void doSomething() { throw new RuntimeException(); } Ce code me surprend car il semble que la run()méthode-soit capable de lancer un Exception,...