Advertisement
Guest User

Все плохо с exception'ами

a guest
Jul 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1.     private InputStream joinPdfPages(PDDocument document) throws IOException {
  2.         try {
  3.             //...
  4.         } catch (IOException e) {
  5.             throw e;
  6.         } finally {
  7.             IOUtils.closeQuietly(jpgImageOutputStream);
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement