Avoid multiple unary operators

< 1 min read

Impact Area

Manageability

Severity

High

Affected Element

Apex Class

Rule ID #

SF-AVOID-LOSING-EXCEPTION-INFO

Impact #

This rule will generate an issue if a try/catch block neither handles nor propagates the exception. However, if any of the following actions are taken within the catch block, the issue will not be generated:

  • Calling a method that consumes the exception (for example, a method that handles the exception). This method may directly receive the exception or data derived from it.
  • Rethrowing the exception or throwing a new one “chained” to the caught exception.
  • Throwing a new exception that, in its constructor, receives information from the caught exception or data obtained by invoking a method on it.

Remediation #

Ensure that the intended usage is not a bug, or consider simplifying the expression.

Time to fix

15 min

Updated on March 21, 2025
Table of contents
Was it helpful ?