|
|
|
|
|
by twic
2174 days ago
|
|
I follow Joe Duffy in recognising that we should make a distinction between "errors" and "bugs" [0]. IOException is an error; out of bounds access, division by zero, assertion failures, and things like ClassCastException and NullPointerException in Java, are bugs. For errors, you should do error handling, which means you want the compiler to make sure you don't miss them. For bugs, you want to let the program bomb out, either aborting entirely or stopping at some high-level boundary from which it's possible to sanely continue. In Java, unchecked exceptions are a mostly adequate mechanism for that. Rust's catch_unwind is better, because it makes stronger guarantees [1]. Erlang's approach of terminating the thread and throwing away its heap is also very good, if you can apply that. [0] http://joeduffyblog.com/2016/02/07/the-error-model/#bugs-are... [1] https://doc.rust-lang.org/std/panic/fn.catch_unwind.html |
|