L'exemple suivant montre l'implémentation d'exceptions personnalisées en héritant de l'exception :
/* author by w3cschool.cc TestInput.java */ class WrongInputException extends Exception { WrongInputException(String s) { super(s); } } class Input { void method() throws WrongInputException { throw new WrongInputException("Wrong input"); } } class TestInput { public static void main(String[] args){ try { new Input().method(); } catch(WrongInputException wie) { System.out.println(wie.getMessage()); } } }
Le résultat de l'exécution du code ci-dessus est :
Wrong input
Ce qui précède est l'exemple Java - depuis Définir un contenu anormal. Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !