not so clear about this feature.
the situation is we have API which has its own eval catch, it returns normally a status.
we use this API and need a specific status about the execution, the idea is to do an outer eval to catch if any error raised by the API. is it possible ? or it’s ignored by the inside eval.
If the API “throws” an error with
diewhen it “catches” an error, then yes, your outerevalcan “catch” it and handle it as it wants. If the API catches and just returns an error code as, say, a return value, then you don’t need an outereval. A more specific example might help…