Comment ignorer les erreurs d’exécution May 24, 2012 Author: user {filelink=4363} public class ExceptionNonAttrape { static void a() { throw new RuntimeException("Exception g�n�r� dans a"); } static void b() { a(); // Exception, mais ignor�e } public static void main(String[] args) { b(); } } Categories: Uncategorized