I tried using Global Exception Handler in a project for which I used the REFramework and I noticed that the GE-Handler is catching and retrying the “Throw BRE’s” I had set up at some points in the process. So my question to you good folks is: "How can I configure the GE-Handler from catching my custom BRE’s?
Like you suggested, I added an IF activity and use the following as the condition… errorInfo.Exception.GetType().Name.ToString.Contains("BusinessRuleException")
and was able to employ the GEH to treat everything that is not BRE.