Skip to content

Commit

Permalink
Update StreamingWorkbookReader.java
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jan 19, 2024
1 parent ef3add2 commit d9d37fc
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ public void init(File f) throws OpenException, ReadException, ParseException {
} catch(GeneralSecurityException e) {
IOUtils.closeQuietly(pkg);
throw new ReadException("Unable to read workbook - Decryption failed", e);
} catch(RuntimeException e) {
IOUtils.closeQuietly(pkg);
throw e;
}
}

Expand Down

0 comments on commit d9d37fc

Please sign in to comment.