我创建了一个自定义异常类,如下所示
public class CustomException extends Exception{
// some code here
}
现在我有一段代码如下
File file = new File("some_file_path");
try {
FileOutputStream outputStream = new FileOutputStream(file);
} catch (CustomException e) {
e.printStackTrace();
}
但是编译器显示错误Unhandled exception type FileNotFoundException
我的意思是编译器不明白我通过 CustomException 捕获 FileNotFoundException 吗?
请帮忙。