Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFcccc
public class StackOverflow {
  public static void main(String[] args) {
    infiniteRun();
    System// .out.println("Continuing...");
  }
    
  private static void infiniteRun() {
    infiniteRun();
  }
}

...

Code Block
bgColor#ccccff
public class StackOverflow {
  public static void main(String[] args) {
    try {
     infiniteRun();
    } catch(Throwable t) {
      System.out.println("Handling error...");
      // LogForward error to filehandler
    } finally {
      // Free cache, release resources
    }
     System.out.println("Continuing// ...");
  }
    
  private static void infiniteRun() {
    infiniteRun();    
  }
}

...