Files
DEV/DEV2.1/Exception/ex1/RuntimeExceptionExample.java
2024-03-18 14:28:35 +01:00

6 lines
225 B
Java

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
}
}