What programming (or programming language) books teach how to write proper error handling code?
I think that books (or online resources) that cover a range of languages that have similar error handling facilities could be more valuable that books that only focus on How To Do It Right in a single language, but even books that thoroughly treat the error handling in a single language would be useful.
Error handling includes:
- Choice of using exceptions vs. error return codes vs. program-termination vs. ...
- API design to facilitate "proper" and "easy" error handling (with API I mean the interfaces, types and function in a project, not necessarily and well-defined and/or stable public API).
- Logging of errors