  |
Exception Handling: A False Sense Of Security - http://www.informit.com/content/images/020163371x/supplements/Exception_Handling_Article.html
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. By Tom Cargill. |
  |
How a C++ Compiler Implements Exception Handling - http://www.codeproject.com/cpp/exceptionhandler.asp
An indepth discussion of how VC++ implements exception handling. Source code includes exception handling library for VC++. |
  |
Constructor Failures (or, The Objects That Never Were) - http://www.gotw.ca/publications/mill13.htm
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. |
  |
C++ Exception Handling - http://www.eastcoastgames.com/articles/cppexception.html
Introduces the concept of exception handling for handling program errors. |
  |
Exception Handling in C++ - http://www.informit.com/articles/article.asp?p=31537
Learn how to throw an exception, how to associate handlers, or catch clauses, with a set of program statements using a try block, how exceptions are handled by catch clauses, exception specifications, and design considerations for programs that use exceptions. |