Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
ah7-backend
/
node_modules
/
passport
/
lib
/
errors
/
Filename :
authenticationerror.js
back
Copy
/** * `AuthenticationError` error. * * @constructor * @api private */ function AuthenticationError(message, status) { Error.call(this); Error.captureStackTrace(this, arguments.callee); this.name = 'AuthenticationError'; this.message = message; this.status = status || 401; } // Inherit from `Error`. AuthenticationError.prototype.__proto__ = Error.prototype; // Expose constructor. module.exports = AuthenticationError;