Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
[java] Exceptions
Article publié le 14/01/2005 11:19:23La gestion des exceptions avec Java consiste à définir au sein d'une méthode une clause try{} contenant les instructions qui risquent de provoquer une exception et de la faire suivre immédiatement par une clause catch(){} contenant comme paramètre l'exception attendue précédée de son type (pour une erreur mathématique ce sera ArithmeticException) et dont le contenu sera une liste d'instruction à exécuter lorsque l'exception se produira.
Voici la syntaxe type d'une classe gérant des exceptions:
Code Java (16 lignes)
class Nom_de_la_classe { // Instructions inoffensives (affectations, ...); try { // Instructions susceptibles de provoquer des erreurs; } catch (TypeException e) { // Instructions de traitement de l'erreur; } // Instructions si aucune erreur est apparue; } }
Un article de Akira Sato
Source : www.sun.com
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-187.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.