All rules
CA2219Usage Enabled by default: As suggestion

Do not raise exceptions in exception clauses

Do not raise exceptions in exception clauses

Microsoft docs

Description

When an exception is raised in an exception clause, it greatly increases the difficulty of debugging.

When an exception is raised in a finally or fault clause, the new exception hides the active exception, if present. This makes the original error hard to detect and debug.

When an exception is raised in a filter clause, the runtime silently catches the exception, and causes the filter to evaluate to false. There is no way to tell the difference between the filter evaluating to false and an exception being throw from a filter. This makes it hard to detect and debug errors in the filter's logic.

Cause

An exception is thrown from a finally, filter, or fault clause.

How to fix violations

To fix this violation of this rule, do not explicitly raise an exception from a finally, filter, or fault clause.

Example

try
{
    // ...
}
finally
{
    // This code violates the rule.
    throw new Exception();
}

When to suppress

Do not suppress a warning for this rule. There are no scenarios under which an exception raised in an exception clause provides a benefit to the executing code.

Group results
0 yes 0 no
ConsensusNone (disabled)
Severity preference (yes voters)
Suggestion0
Warning0
Error0