Class: JWSInvalid

August 29, 2025 ยท View on GitHub

๐Ÿ’— 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 JWS is invalid.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

โ€ข code: string = 'ERR_JWS_INVALID'

A unique error code for JWSInvalid.