小小儁爺
2025-11-18 aab92bb255f1cbd758cb9d96a89bfc73133bfb4a
1
2
3
4
5
6
7
8
9
10
11
12
13
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;