Back to Jose

Class: JWEDecryptionFailed

docs/util/errors/classes/JWEDecryptionFailed.md

6.2.2778 B
Original Source

Class: JWEDecryptionFailed

šŸ’— 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 JWE ciphertext decryption fails.

Examples

Checking thrown error is this one using a stable error code

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

Checking thrown error is this one using instanceof

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

Properties

code

• code: string = 'ERR_JWE_DECRYPTION_FAILED'

A unique error code for JWEDecryptionFailed.