A nice introduction to C++ exceptions:
Levels of Exception Safety
by Arne Mertz
From the article:
Exceptions are part of C++. They are thrown by the standard library classes, and sometimes even if we are not really using the standard library. So, unless we are in a very restrictive environment like embedded programming and have exceptions disabled in the compiler, we need to be prepared and deal with the fact that exceptions simply can happen.
Add a Comment
Comments are closed.