mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
17 lines
368 B
Markdown
17 lines
368 B
Markdown
---
|
|
date: 2020-11-11
|
|
id: af9d9cf2-a888-4e8e-8156-4c4a664450f1
|
|
title: Catching Promise Errors
|
|
---
|
|
|
|
# Syntax
|
|
|
|
``` javascript
|
|
new Promise((_, reject) => reject(new Error("Fail")))
|
|
.then(value => console.log("Handler 1"))
|
|
.catch(reason => {
|
|
console.log("Caught failure " + reason);
|
|
return "nothing";
|
|
})
|
|
.then(value => console.log("Handler 2", value));
|
|
```
|