double-submit-cookies
Version:
Double Submit Cookies Authentication
15 lines (12 loc) • 422 B
JavaScript
function UnauthorizedError (code, error) {
Error.call(this, error.message);
Error.captureStackTrace(this, this.constructor);
this.name = "UnauthorizedError";
this.message = error.message;
this.code = code;
this.status = 401;
this.inner = error;
}
UnauthorizedError.prototype = Object.create(Error.prototype);
UnauthorizedError.prototype.constructor = UnauthorizedError;
module.exports = UnauthorizedError;