3.6. Section 11: Exceptions

Q: 11.4.1(19): Exception Information
Q: 11.5(28): Suppression of Checks

Q: 11.4.1(19): Exception Information

Exception_Message by default and Exception_Information should produce information useful for debugging. Exception_Message should be short, about one line. Exception_Information can be long. Exception_Message should not include the Exception_Name. Exception_Information should include both the Exception_Name and the Exception_Message.

A: Followed for Exception_Message. Exception_Information is not supported.

Q: 11.5(28): Suppression of Checks

The implementation should minimize the code executed for checks that have been suppressed.

A: Followed.