public class OneDay {
public static void main(String[] args){
int num = 20;
try {
if (num > 10){
throw new AddException("传入数据过大!");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
System.out.println("自定义异常!");
}
}
}
/**自定义异常类*/
class AddException extends Exception{
public AddException(String msg){
super(msg);
}
}
仅仅只需要 extents Exception
,接着写构造方法,使用:super,在调用处:使用throw new 对传入参数
2021年10月2日