Files
DEV/DEV2.1/Exception/ex2/Main.java

10 lines
289 B
Java
Raw Normal View History

2024-03-18 14:28:35 +01:00
public class Main {
public static void main(String[] args) {
try {
ArithmeticExceptionVrai.computeDivision();
} catch (ArithmeticException e) {
System.out.println("Une erreur arithmétique s'est produite : " + e.getMessage());
}
}
}