How to get the stage of exception in UiPath

How can I get the stage of exception in Uipath?
We have a function ExceptionStage() in BluePrism to get information about the Page and Action where the exception has occured

Similarly, what function can I use in Uipath. Does exception.source work here?

@Siva_Priya

You can use exception.Message

Also exception.Source works for getting the details of exception

Mark as solution if this helps

Thanks

exception.Message is used to get the Exception detail. What I need to know is the Sequenc/ Flowchart and the action where the exception occurred

@Siva_Priya

Yes, you can use exception.source

In that case

Check as below for your reference

Thanks