Hi All,
I'm trying to add a exception to one of my nodes when I'm creating new users, checking the condition if the username is taken or not. I'm currently trying to add this exception to the create new user smart service node, When I create this exception it gives me an error of activity class parameter? is it saying that the value giving to check it doesn't exist ? I'm not sure.
Discussion posts and replies are publicly visible
Probably easier to deal with it via a regular gateway instead of an exception.
I'm trying to avoid using more nodes since my pm is already very large. Any way you could provide me with an example of configuring an exception?
Exceptions aren't usually used in that way. I personally try to avoid them because it makes the process harder to read and troubleshoot. Only thing I might use is a timer exception to trigger something after a certain period of time.
If your process model is getting too big, I would recommend refactoring it into smaller pieces.
Node exceptions are "Business Exceptions" but not technical exceptions. They basically define a business rule to skip that node and start an alternative flow.
You cannot use them to "catch" a technical issue.
Thats what I'm trying to do if the rule is true to skip node and start the alternative flow. I'm just having trouble configuring it