Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 735 Bytes

JWTInvalid.md

File metadata and controls

33 lines (21 loc) · 735 Bytes

Class: JWTInvalid

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 JWT is invalid.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

code: string = 'ERR_JWT_INVALID'

A unique error code for this particular error subclass.