Merge pull request #1662 from jchue/patch-4

Make minor grammar corrections/updates to async/promise-error-handling
This commit is contained in:
Ilya Kantor 2019-12-27 16:03:31 +03:00 committed by GitHub
commit 94c6f0bbd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ The final `.catch` not only catches explicit rejections, but also occasional err
As we already noticed, `.catch` at the end of the chain is similar to `try..catch`. We may have as many `.then` handlers as we want, and then use a single `.catch` at the end to handle errors in all of them.
In a regular `try..catch` we can analyze the error and maybe rethrow it if can't handle. The same thing is possible for promises.
In a regular `try..catch` we can analyze the error and maybe rethrow it if it can't be handled. The same thing is possible for promises.
If we `throw` inside `.catch`, then the control goes to the next closest error handler. And if we handle the error and finish normally, then it continues to the closest successful `.then` handler.