Cpp Coding Standards/ERR

From Apache OpenOffice Wiki
< Cpp Coding Standards
Revision as of 12:46, 2 February 2007 by Np (Talk | contribs)

Jump to: navigation, search

Topic-Id: ERR

How to distinguish and use exceptions, assertions and other error cases.


Summary

Assert Assumptions (Assert)

Assert liberally to document internal assumptions and invariants. Don't use assertions for runtime errors. Ensure that assertions don't perform side effects.

Details

Function Safety Guarantees (Safe)

For each function, give the strongest error-safety guarantee that won't penalize callers who don't need it. Always give at least the basic guarantee.

Details

Which Functions Never Fail (NoFail)

Destructors, delete operators and swap functions must never fail. Occurring exceptions have to be catched and handled within the same function.

Details

Throwing and Catching Exceptions (HowThrow)

Throw exceptions by value, catch them by reference.

Details

Avoid Exception Specifications (ExSpec)

Don't write exception specifications on your functions.

Details


Related Rules


Personal tools