我正在使用容器管理的持久性,并且想知道FinderException
是否可以被以下代码捕获:
public File getFileData(String fileNumber) throws FinderException {
try {
FileHome fileHome = this.getFileHome();
File file = fileHome.findByPrimaryKey(fileNumber);
return file ;
} catch (FinderException finderException) {
//do something
}
return null;
}