jwks-client
Version:
Library to retrieve public keys from a JWKS endpoint
11 lines (9 loc) • 375 B
JavaScript
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;
export default SigningKeyNotFoundError;