Viewing File: /home/ubuntu/efiexchange-node-base/node_modules/jwks-rsa/src/errors/SigningKeyNotFoundError.js
function SigningKeyNotFoundError(message) {
Error.call(this, message);
Error.captureStackTrace(this, this.constructor);
this.name = 'SigningKeyNotFoundError';
this.message = message;
}
SigningKeyNotFoundError.prototype = Object.create(Error.prototype);
SigningKeyNotFoundError.prototype.constructor = SigningKeyNotFoundError;
module.exports = SigningKeyNotFoundError;
Back to Directory
File Manager