Hi,
Is it possible to have a condition out of an XOR gateway that acts as a "catch-all" or default in case non of the other conditions are satisfied - think of a switch-case statement
I'm trying to find the bpm equivalent for the following:
switch (some condition) {
case <value 1>: ....
case <value 2>: ...
default: ..... // this is what i want
}