Back to Jose

Class: JWKSNoMatchingKey

docs/util/errors/classes/JWKSNoMatchingKey.md

6.2.2762 B
Original Source

Class: JWKSNoMatchingKey

šŸ’— Help the project

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.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

• code: string = 'ERR_JWKS_NO_MATCHING_KEY'

A unique error code for JWKSNoMatchingKey.