public class ExceptionTest {
public static void errorHandling() {
System.out.println("Error");
throw new IllegalAccessException();
}
public static void main(String[] args) {
try {
errorHandling();
} catch (IllegalAccessException e) {
System.out.println("Main error");
}
}
}
What is the result of executing?
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати