You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
362 B
JavaScript
13 lines
362 B
JavaScript
10 months ago
|
var JsonWebTokenError = require('./JsonWebTokenError');
|
||
|
|
||
|
var NotBeforeError = function (message, date) {
|
||
|
JsonWebTokenError.call(this, message);
|
||
|
this.name = 'NotBeforeError';
|
||
|
this.date = date;
|
||
|
};
|
||
|
|
||
|
NotBeforeError.prototype = Object.create(JsonWebTokenError.prototype);
|
||
|
|
||
|
NotBeforeError.prototype.constructor = NotBeforeError;
|
||
|
|
||
|
module.exports = NotBeforeError;
|