class Main {
  public static void main(String... args) {
    try {
      System.out.println("In try block...");
    } catch (RuntimeException re) {
      throw re;
      System.out.println("After throw");
    }
  }
}