Daily Archives: July 28th, 2005

How not to handle errors.

Steve has an interesting post about C++ error handling.
At least your codebase, Steve, isn’t full of stuff like this.
catch (…)
{
    ASSERT(false);
}