Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 617 Bytes

JOSEError.md

File metadata and controls

25 lines (15 loc) · 617 Bytes

Class: JOSEError

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.

A generic Error that all other JOSE specific Error subclasses extend.

Example

Checking thrown error is a JOSE one

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

Properties

code

code: string = 'ERR_JOSE_GENERIC'

A unique error code for this particular error subclass.