Collect (extract) all exceptions for a Process or Object!

diarselimi

New Member
Is there a possible way to extract all the exception messages from a process just like it is for getting all the exception types from a process and object?

I'm using Blue Prism V5
 

dardandemiri

New Member
Hi Diar, yes you can do that.

In Blue Prism when you copy a stage and paste it on a text editor like ( Notepad ) you can actually see the code behind that stage.
So you can copy all content from the pages you want to extract the exception and paste it on a data item.
Then apply a Regex to extract just the exceptions.

Here an example:

In the code you see something like this:<exception type="System Exception" detail="&quot;This is a test&quot;" /> is an exception stage with everything in it.
You can create a Regex like: <exception type=".*" detail="&quot; .* &quot;" />

And this will select all stages.

Good Luck ;)
 

diarselimi

New Member
Thank you, Dardan It looks interesting definitely this will do, and this raises another question which I will ask the guys in the forum you can refer Here
 
Top