Skip to content

Instantly share code, notes, and snippets.

@melcor76
Created January 25, 2019 10:24
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 melcor76/52a388c2ea161fa88731b4a4abb0cbca to your computer and use it in GitHub Desktop.
Save melcor76/52a388c2ea161fa88731b4a4abb0cbca to your computer and use it in GitHub Desktop.
Error handler - basic
try {
throw new Error('En error happened');
}
catch (error) {
console.error('Log error', error);
}
console.log('Script execution continues');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment