Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 945 Bytes

util_errors.JOSENotSupported.md

File metadata and controls

44 lines (27 loc) · 945 Bytes

Class: JOSENotSupported

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 particular feature or algorithm is not supported by this implementation or JOSE in general.

Example

Checking thrown error is this one using a stable error code

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

Example

Checking thrown error is this one using instanceof

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

Table of contents

Properties

Properties

code

code: string = 'ERR_JOSE_NOT_SUPPORTED'

A unique error code for this particular error subclass.