Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 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.  
  13. try {
  14. //close first
  15. } catch (Throwable t1) {
  16. } finally {
  17.  
  18. try {
  19. //close second
  20. } catch (Throwable t2) {
  21. }
  22. }
  23.  
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement