Hi everyone.
How do I hide the generic message that pops up when an error occurs and show a custom message instead? And there used to be an Error object (forget what it was called) that you could refer to, but that seems to have gone as well.
As per my knowledge,
Use a Try-Catch activity to handle errors and show a custom message. Place your workflow inside the Try block. In the Catch block, select System.Exception and use a Log Message or Message Box to display your custom message. You can also use exception.Message to get error details.