Skip to content

Instantly share code, notes, and snippets.

@dented
Created September 2, 2015 08:44
Show Gist options
  • Select an option

  • Save dented/438dca338a8bcccad7bf to your computer and use it in GitHub Desktop.

Select an option

Save dented/438dca338a8bcccad7bf to your computer and use it in GitHub Desktop.
Custom Error in JavaScript
function MyError(code, msg) {
this.message = msg;
this.statusCode = code;
this.name = 'HttpError';
const err = Error(msg);
this.stack = err.stack;
}
MyError.prototype = Object.create(Error.prototype);
MyError.prototype.constructor = MyError;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment