Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 837 Bytes

util_errors.JWSInvalid.md

File metadata and controls

43 lines (26 loc) · 837 Bytes

Class: JWSInvalid

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.

Example

Checking thrown error is this one using a stable error code

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

Example

Checking thrown error is this one using instanceof

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

Table of contents

Properties

Properties

code

code: string = 'ERR_JWS_INVALID'

A unique error code for this particular error subclass.