Hi all,
I have a workflow that that is passed a list of string fields to be used to populate a template. The list if ever changing. Some of these string string values are effectively just integers.
Workflow has nop problems assigning the integer values to interger fields in LF. If the field incorrectly contains an alphanumeric, I'd like to be able to trap the error and send a notification to support & devs.
I don't want to test individual fields, because that's effectively hard-code a field list (do-able but much prefer to avoid this approach).
I though I could create a Task Error Handler for "any" error from "any source" with an error code of 9017 and trap it but no luck.
I tried to set the error handler as "critical" to see if I could trigger a try-catch but the error is still just a "warning."
I tried to set the retry timeout to 20 minutes, to use a deadline to trap it, but not luck.
It seems that my Task Error Handler configuration is simply being ignored. Am I using it correctly?