Guest User

Untitled

a guest
Nov 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. System.out.println("1");
  2.  
  3. try {
  4. System.out.println("2");
  5. throw new FileNotFoundException();
  6. }
  7. System.out.println("3");
  8. catch (EOFException e) {
  9. System.out.println("4");
  10. } catch (FileNotFoundException e) {
  11. System.out.println("5");
  12. }
Add Comment
Please, Sign In to add comment