Can anyone help me, how can I do this on IntelliJ IDEA.
Can you give me some information?
package fr.codegym.task.task09.task0913;
import java.io.FileNotFoundException;
import java.net.URISyntaxException;
/*
Des exceptions. Rien que des exceptions.
*/
public class Solution {
public static void main(String[] args) throws Exception {
//écris ton code ici
try{
methode1();
}catch(NullPointerException e){
System.out.println(e);
}catch(FileNotFoundException e){
System.out.println(e);
}catch(Exception e){
System.out.println(e);
}
//écris ton code ici
}
public static void methode1() throws NullPointerException, ArithmeticException, FileNotFoundException, URISyntaxException {
int i = (int) (Math.random() * 4);
if (i == 0) {
throw new NullPointerException();
}
if (i == 1) {
throw new ArithmeticException();
}
if (i == 2) {
throw new FileNotFoundException();
}
if (i == 3) {
throw new URISyntaxException("", "");
}
}
}