Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Wiki MarkupAccording to the Java Language Specification \ [[JLS 2005|AA. References#JLS 05]\], Section 11.2, "Compile-Time Checking of Exceptions,"

The unchecked exceptions classes are the class RuntimeException and its subclasses, and the class Error and its subclasses. All other exception classes are checked exception classes.

...

This guideline appears in the C++ Secure Coding Standard as ERR30-CPP. Try to recover gracefully from unexpected errors.

Bibliography

Wiki Markup\[[JLS 2005|AA. References#JLS 05] \] [Section 11.2, Compile-Time Checking of Exceptions|http://java.sun.com/docs/books/jls/third_edition/html/exceptions.html#11.2] \[[Kalinovsky 2004|AA. References#Kalinovsky 04]\] Chapter 16, Intercepting Control Flow: Intercepting System Exceptions
[Kalinovsky 2004] Chapter 16, Intercepting Control Flow: Intercepting System Errors

...

EXC07-J. Prevent exceptions while logging data      06. Exceptional Behavior (ERR)