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
link|improve this question

66% accept rate
what is the "Right" way? I think this is extremely dependent on the situation. You need to understand the criteria of your application and code accordingly... It seems you already know the common approaches - what more do you need?!? – Nim May 10 '11 at 15:06
@Nim: A book doesn't need to teach how to do it Right. But it does have to teach how to do it Not Wrong. This is what I meant with proper error handling code. – Martin May 10 '11 at 15:12
hmm, not convinced, what is "proper error handling code"? Michael below mentions telecom systems, but the expectation is something else could be completely different - say fail fast. The point I'm making is, you need to experiment and and understand what works for your application, some book isn't going to tell you anything you don't appear to already know.. anyways, it's your money to waste... – Nim May 10 '11 at 15:21
This Community Wiki question contains a lot of good info. – Martin May 10 '11 at 15:32
Since I believe error-handling and API are closely related: Recommendations for books on refactoring and API design – Martin May 13 '11 at 7:38
feedback

closed as not constructive by Bill the Lizard Sep 26 '11 at 14:12

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

I think the neatest and nearest you can find is in books like "Code Complete" "Clean Code" maybe "Code Quality"

Regards Friedrich

link|improve this answer
Great suggestions by Friedrich I was going to recommend Clean Code it is an excellent reference for beginners and pros – Burt May 10 '11 at 15:06
Ah thanks! I actually have Clean Code on my bookshelf here. I'll have to check out Chapter 7 on Error handling again. – Martin May 10 '11 at 15:10
feedback

Any book that covers the Erlang language. It is used to write the code for telecom/networking systems that have to maintain 5 9's uptime, that is 99.999% uptime. These systems have to recover from errors without crashing, and even have to allow for hardware upgrades without shutting down.

But even better than reading books, is to write a comprehensice set of unit tests that tests every aspect of your code, and to combine that with a code coverage utility that will show you when your unittest is missing some paths through the code.

link|improve this answer
Hmmm ... do you think that the error handling models used in erlang applications are applicable to other languages? – Martin May 10 '11 at 15:13
Yes, I do, but since Erlang is based on the idea of many lightweight processes sending messages to each other, it works better if you are in a similar environment. It won't work in a monolithic app, but if you can solve your problem with lots of small processes running on Linux and sending AMQP or 0MQ messages, then it is possible. – Michael Dillon May 12 '11 at 7:09
feedback

This answer to another question mentions Herb Sutter's and Andrei Alexandrescu's book C++ Coding Standards.

I think it's chapter on Error Handling and Exceptions does a great job of highlighting some issues wrt. to error handling in general. (e.g. Item 70. Distinguish between errors and non-errors)

link|improve this answer
feedback

Although focusing on Java, jenkov.com has a lot of information and ideas on correct usage of exceptions. The author gives a very thorough explanation of different exception strategies. Here are the main two tutorials:

http://tutorials.jenkov.com/exception-handling-strategies/index.html

http://tutorials.jenkov.com/java-exception-handling/index.html

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.