Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created October 11, 2017 14:48
Show Gist options
  • Save zlatkov/7282966e52cab3eee85794d5e8df6928 to your computer and use it in GitHub Desktop.
Save zlatkov/7282966e52cab3eee85794d5e8df6928 to your computer and use it in GitHub Desktop.
async function loadData() {
await callAPromise1()
await callAPromise2()
await callAPromise3()
await callAPromise4()
await callAPromise5()
throw new Error("boom");
}
loadData()
.catch(function(e) {
console.log(err);
// output
// Error: boom at loadData (index.js:7:9)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment