How to Identify that where the System Exception is thrown

Hi Team Good Day.

Can anyone let me know that, how to Identify where the System Exception is thrown, If the client does not agree to ‘take screenshots’ due to security issues, How can I know the state of the application screen is thrown exception.

1 Like

Hi @Shankar_MasRobo

Place the code in try catch and in the catch section you can handle the exception as per your requirement. So, when ever the error occurs then the code will move into catch section and that will help you to know about the error and the source of the error occured.

Regards

@Shankar_MasRobo,

  1. Use Try catch to get the exact location of error. Exception.Source will give you source activity which is failed.
  2. Using Custom Logs you can create detailed log messages that describe the application’s state and any relevant data at critical points. Ensure these logs are written to a secure location.

Check with client if they can help with a Sharedrive to store screenshot’s instead of storing them on Orchestrator.

Thanks,
Ashok :slight_smile:

Also, have a look at global handlers and which info is provided when the global handler is triggered