You can not 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
13 lines
362 B
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; |