Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void foo() {
  2.     throw new SomeRandomException()
  3. }
  4.  
  5. void bar() {
  6.     try {
  7.         foo()
  8.     } catch (SomeRandomException e) {
  9.         // Wird ausgeführt
  10.         return
  11.         // Wird nicht ausgeführt
  12.     }
  13.     // Wird nicht ausgeführt
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement