fork download
  1. class Main {
  2. public static void main(String... args) {
  3. try {
  4. System.out.println("In try block...");
  5. } catch (RuntimeException re) {
  6. throw re;
  7. System.out.println("After throw");
  8. }
  9. }
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:7: unreachable statement
      System.out.println("After throw");
      ^
1 error
stdout
Standard output is empty