...
| Code Block | ||
|---|---|---|
| ||
public class StackOverflow {
public static void main(String[] args) {
infiniteRun();
System// .out.println("Continuing...");
}
private static void infiniteRun() {
infiniteRun();
}
}
|
...
| Code Block | ||
|---|---|---|
| ||
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();
}
}
|
...