blob: 04cbbe5f4457dbf9762ba338a3017512734e33dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* `AuthenticationError` error.
*
* @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 `AuthenticationError`.
*/
module.exports = AuthenticationError;
|