About using BusinessRuleException in ReFramework?

I’m using ReFramework for a project. I’m using an Orchestrator queue, with AutoRetry set to “No”.

In the Process.xaml I’m invoking 6 workflows. Now, If I understand correctly, If I use the throw activity, with “new BusinessRuleException()”, this will make the ReFramework skip the current transactionitem and get the next transactionitem from the queue. Is this correct?

Hi @bcm

I think it is correct.
By the way, when using default REFramework, throwing a rule exception is almost logically same to immediately making current queue successful, except that the type of writing log and the updating status of queue.

Thank you. This is exactly how I thought It worked.