Advertisement
Guest User

Exceptions: bad way

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