I want to catch workflow errors that are not expected or in other words, errors not caught with “An unhandled error occurs”.
For example, an API call returns an error “bad email” – I have a “An unhandled error occurs” only when the message includes “bad email” but now I want to catch other errors to alert me of errors that need to be dealt with.
I do not want to know about all errors because many of them are known and their are steps in the workflow to handle them.
I just want to know about the ones I haven’t accounted for.
Is there a way to do this?