Problem with State Machine Transition

This is something I am having a problem with currently that I can’t seem to find a lot of training on.

Inside of my GetTransactionData I am using TryCatch blocks and I am seeing the logs come through when there are catches, however it is heading to the Process block instead of the End block. I do not understand this well enough to see what the problem is here.

This is my try catch block:


and I am seeing this in my logs.

This is the transition that it seems to be completely skipping over…

image

Here’s a snip of the logs:

Hi there.

The SystemError variable should be assigned exception in the Catch, so that when the condition is looked, SystemError will not be Nothing and go to End Process.

SystemError = exception

Does that help?

1 Like

Add this after the log activity

image

1 Like

Thank you for your clarification!

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.