Guest User

Untitled

a guest
Jun 18th, 2019
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  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.     }
  11.     // Wird ausgeführt
  12. }
Advertisement
Add Comment
Please, Sign In to add comment