Adding Exception Testing to Unit Tests - This article describes a simple method of adding exhaustive testing of the exception paths to the test suite. www.cuj.com/articles/2001/0104/0104c/0104c.htm
C++ Exception Handling - Introduces the concept of exception handling for handling program errors. www.eastcoastgames.com/articles/cppexception.html
Constructor Failures (or, The Objects That Never Were) - Shows what object construction, and construction failure, mean in C++; and that function try blocks are useful to translate an exception thrown from a base or member subobject constructor. www.gotw.ca/publications/mill13.htm
Error and Exception Handling - Presents some guidelines when to use exceptions. www.boost.org/more/error_handling.html
Exception Handling: A False Sense Of Security - Explains why most members of the C++ community vastly underestimate the skills needed to program with exceptions and therefore underestimate the true costs of their use. cseng.aw.com/book/related/0,3833,020163371X+11,00.html
Exception-Safety in Generic Components - Lessons learned from specifying exception-safety for the C++ standard library. www.boost.org/more/generic_exception_safety.html
Understanding C++ Exception Handling - Offers some insight into the use and potential misuse of exceptions. www.gamedev.net/reference/articles/article953.asp