Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. //one
  2. //two
  3. try {
  4.    //open one
  5.    //open two
  6.  
  7.    //do stuff
  8.  
  9. } catch (Throwable t) {
  10.    //log exception
  11. } finally {
  12.    try {
  13.       //close first
  14.    } catch (Throwable t1) {
  15.    }
  16.    try {
  17.       //close second
  18.    } catch (Throwable t2) {
  19.    }
  20.    
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement