运行 ❯
获取您的
自己的 Java
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
public class Main { static void checkAge(int age) throws ArithmeticException { if (age < 18) { throw new ArithmeticException("Access denied - You must be at least 18 years old."); } else { System.out.println("Access granted - You are old enough!"); } } public static void main(String[] args) { checkAge(15); } }
线程 "main" 中的异常 java.lang.ArithmeticException: 访问被拒绝 - 您必须年满 18 岁。
at MyClass.checkAge(MyClass.java:4)
at MyClass.main(MyClass.java:12)