You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a call to Map in my chain, but the callback was throwing an exception. I was expecting for the exception to be caught internally and for the result to be errored out to the exception message, but that didn't happen and it just threw the exception into my code. That's understandable, but my question is what is the recommended way to handle exceptions inside callbacks/lambdas so that the error gets set properly into the result?
The text was updated successfully, but these errors were encountered:
Never mind, I found that there is BindTry. I initially did not find it, because it's not in the docs. But I did find it in the source code. Perhaps it should be mentioned in the docs.
I had a call to
Map
in my chain, but the callback was throwing an exception. I was expecting for the exception to be caught internally and for the result to be errored out to the exception message, but that didn't happen and it just threw the exception into my code. That's understandable, but my question is what is the recommended way to handle exceptions inside callbacks/lambdas so that the error gets set properly into the result?The text was updated successfully, but these errors were encountered: