6 lines
225 B
Java
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
|
||
|
|
}
|
||
|
|
}
|