Back to Jose

Class: JWSSignatureVerificationFailed

docs/util/errors/classes/JWSSignatureVerificationFailed.md

6.2.2834 B
Original Source

Class: JWSSignatureVerificationFailed

šŸ’— 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 JWS signature verification fails.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

• code: string = 'ERR_JWS_SIGNATURE_VERIFICATION_FAILED'

A unique error code for JWSSignatureVerificationFailed.