SAP-BTP-Spielwiese/app1/node_modules/jsonwebtoken/lib/NotBeforeError.js

13 lines
362 B
JavaScript
Raw Permalink Normal View History

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;