Files
DEV/DEV2.1/Exception/ex1/RuntimeExceptionExample.java

6 lines
225 B
Java
Raw Permalink Normal View History

2024-03-18 14:28:35 +01:00
public class RuntimeExceptionExample {
public static void main(String[] args) {
throw new UnsupportedOperationException("Operation not supported"); // Lancement d'une exception d'opération non supportée
}
}