Skip to content

Instantly share code, notes, and snippets.

@batazo
Created July 3, 2022 18:48
Show Gist options
  • Save batazo/886c6d66b137c2aac1dd6ca0a2cab8dd to your computer and use it in GitHub Desktop.
Save batazo/886c6d66b137c2aac1dd6ca0a2cab8dd to your computer and use it in GitHub Desktop.
error.cause
try {
const result = 2 / 0;
console.log(result);
} catch (error) {
console.err(error);
throw new Error('Something went wrong', { cause: error });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment