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 JOSE Algorithm is not allowed per developer preference.
Checking thrown error is this one using a stable error code
if (err.code === 'ERR_JOSE_ALG_NOT_ALLOWED') {
// ...
}
Checking thrown error is this one using instanceof
if (err instanceof jose.errors.JOSEAlgNotAllowed) {
// ...
}
• code: string
= 'ERR_JOSE_ALG_NOT_ALLOWED'
A unique error code for this particular error subclass.