chore: excel read exception log

This commit is contained in:
godotg
2024-10-19 10:57:16 +08:00
parent 92fc58fcd0
commit dc1a196714
@@ -110,7 +110,7 @@ public abstract class ExcelReader {
private static Workbook createWorkbook(InputStream input, String fileName) {
try {
return WorkbookFactory.create(input);
} catch (IOException e) {
} catch (Exception e) {
throw new RunException("Static excel resource [{}] is abnormal, and the file cannot be read", fileName, e);
}
}