Just about every piece of example code everywhere omits error handling (because it ‘confuses the issue’ that the example code is addressing). My programming knowledge comes primarily from books and web sites, and you seldom see any error handling in use at all there, let alone good stuff.
Where are some places to see good examples of C++ error handling code? Specific books, specific open-source projects (preferably with the files and functions to look at), and specific web pages or sites will all be gratefully accepted.
Herb Sutter’s and Andrei Alexandrescu’s book C++ Coding Standards comes with a whole chapter on Error Handling and Exceptions including
Every topic also includes an example and I found it to be a very valuable resource.