Catching Errors With the Catch Operator
Learn how to respond when an error occurs and then continue the code execution.
We'll cover the following...
So far we’ve learned how to detect an error and do something with that information, but we haven’t been able to react to it and continue with whatever we were doing. Observable instances have the catch
operator, which allows us to react to an error in the Observable and continue with another Observable.
The ...