Guest User

Untitled

a guest
Jan 15th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Resource r = new Resource();
  2. try {
  3. r.use();
  4. other();
  5. } finally {
  6. r.close();
  7. }
  8.  
  9. class Resource implements AutoCloseable //...
  10.  
  11. try(Resource r = new Resource()) {
  12. r.use();
  13. other();
  14. }
  15.  
  16. MyException: Exception in use()
  17. at Resource.use(Main.java:11)
  18. at Main.main(Main.java:16)
  19. Suppressed: java.lang.RuntimeException: Exception in close()
  20. at Main.close(Main.java:6)
  21. at Main.main(Main.java:17)
  22. }
Add Comment
Please, Sign In to add comment