Comment ignorer les erreurs d’exécution

Author:


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

A Voir sur le même Sujet:

  • comment ignorer les exception

Leave a Reply

Your email address will not be published. Required fields are marked *