Skip to content

Instantly share code, notes, and snippets.

@botanicus
Created July 27, 2012 11:40
Show Gist options
  • Save botanicus/3187525 to your computer and use it in GitHub Desktop.
Save botanicus/3187525 to your computer and use it in GitHub Desktop.
Creating custom exception 'classes' in JavaScript.
function CustomError () {
this.message = "Custom error, yay!";
};
CustomError.prototype = Error.prototype;
throw new CustomError();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment