ST-DBP-003 - Empty Catch Block
Rule ID: ST-DBP-003
Scope: Activity
Description
This rule checks if a Try Catch activity has an empty Catch block. Catching an error without doing anything (like logging the error or handling it) simply hides the error. This makes it very difficult to troubleshoot because the automation will fail silently without leaving a trace.

Recommendation
Always add at least a Log Message activity inside the Catch block to record the error details. This helps you easily trace and fix issues if the workflow encounters an exception.