Back to Jose

Class: JWKInvalid

docs/util/errors/classes/JWKInvalid.md

6.2.2714 B
Original Source

Class: JWKInvalid

šŸ’— 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 a JWK is invalid.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

• code: string = 'ERR_JWK_INVALID'

A unique error code for JWKInvalid.