在这里,我正在创建我的自定义异常,并希望在错误输入的divide方法上抛出异常,直到那时我能够抛出我的自定义异常,但捕获它的问题代码如下
class A extends Exception {
A(String s) {
super(s);
}
}
class Emp {
int a;
int b;
void divide(int a, int b) throws A {
if (b == 0) {
throw new A("super exception is there");
} else
System.out.println(a / b);
}
public static void main(String args[]) {
Emp m = new Emp();
try {
m.divide(10, 0);
} catch (A e) {
System.out.println(e);
}
}
}
它给了我错误主要方法没有找到我一个类
无法弄清楚为什么会发生这种情况