Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.01 KB

util_errors.JWKSNoMatchingKey.md

File metadata and controls

50 lines (30 loc) · 1.01 KB

Class: JWKSNoMatchingKey

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


An error subclass thrown when no keys match from a JWKS.

Example

Checking thrown error is this one using a stable error code

if (err.code === 'ERR_JWKS_NO_MATCHING_KEY') {
  // ...
}

Example

Checking thrown error is this one using instanceof

if (err instanceof jose.errors.JWKSNoMatchingKey) {
  // ...
}

Table of contents

Properties

Properties

code

code: string = 'ERR_JWKS_NO_MATCHING_KEY'

A unique error code for this particular error subclass.


message

message: string = 'no applicable key found in the JSON Web Key Set'