We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在读取Excel的时候 自定义AnalysisEventListener内抛出定义异常后被XlsxSaxAnalyser.parseXmlSource()内的异常处理再次封装成 ExcelAnalysisException catch (Exception e) { throw new ExcelAnalysisException(e); } 这样设计是否合理?导致无法正确的捕捉异常,虽然可以通过instanceof等方式去处理
The text was updated successfully, but these errors were encountered:
修改异常抛出逻辑 [Issue #1618]
37b1253
后续版本修复
Sorry, something went wrong.
No branches or pull requests
在读取Excel的时候 自定义AnalysisEventListener内抛出定义异常后被XlsxSaxAnalyser.parseXmlSource()内的异常处理再次封装成 ExcelAnalysisException
catch (Exception e) {
throw new ExcelAnalysisException(e);
}
这样设计是否合理?导致无法正确的捕捉异常,虽然可以通过instanceof等方式去处理
The text was updated successfully, but these errors were encountered: