Avoid Catch Block With Just Logs

< 1 min read

Impact area

Manageability

Severity

Medium

Affected element

Apex Page

Rule ID #

SF-JUST-LOG-CATCH

Impact #

Catch blocks without code will cause exceptions to be caught without any action

Remediation #

Explicitly handle any exceptions caught

Non compliant code:

} catch(System.CalloutException e) {
        System.debug(‘ERROR:’ + e);
 }

Compliant code:

} catch(Exception ex){
      System.debug(‘ERROR:’ + e);
      return ‘{“error”: “‘ + ex.getMessage() + ‘”}’;
}

Time to fix #

30 min

Updated on March 21, 2025
Was it helpful ?