Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created January 9, 2013 19:30
Show Gist options
  • Save deedubs/4496078 to your computer and use it in GitHub Desktop.
Save deedubs/4496078 to your computer and use it in GitHub Desktop.
function DuplicateEmail(message) {
this.name = "DuplicateEmail";
this.message = message || "Email already in use";
}
DuplicateEmail.prototype = new Error();
DuplicateEmail.prototype.constructor = DuplicateEmail;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment