Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created June 15, 2019 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/27647c4ae5912f9ce6e8414e68ca71c8 to your computer and use it in GitHub Desktop.
Save kunigami/27647c4ae5912f9ce6e8414e68ca71c8 to your computer and use it in GitHub Desktop.
try {
a = await fetchSomeStuff();
b = await fetchSomeStuffDependingOnA(a);
c = await fetchSomeStuffDependingOnB(b);
} catch (ex) {
handleException(ex);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment