Back to Jose

Class: JWKSTimeout

docs/util/errors/classes/JWKSTimeout.md

6.2.2726 B
Original Source

Class: JWKSTimeout

šŸ’— 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.

Timeout was reached when retrieving the JWKS response.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

• code: string = 'ERR_JWKS_TIMEOUT'

A unique error code for JWKSTimeout.