(no title)
kflgkans | 1 year ago
I'm not saying exceptions are good, but I am saying that they do represent the most common error handling pattern.
kflgkans | 1 year ago
I'm not saying exceptions are good, but I am saying that they do represent the most common error handling pattern.
taeric|1 year ago
My assertion is that actual error handling in workflows doesn't work in that manner. Automated workflows have to either be able to work with the value where it was broken, or generally just mark the entire workflow as busted. In that scenario, you don't bubble up the exception, you instead bubble up an error code stating why it failed so that that can be recorded for later consideration. Along the way of bubbling up, you may take alternative actions.
kflgkans|1 year ago