@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
17 lines (16 loc) • 544 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidJoseHeaderException = void 0;
const jose_exception_1 = require("./jose.exception");
/**
* Raised when the provided JOSE Header is invalid.
*/
class InvalidJoseHeaderException extends jose_exception_1.JoseException {
/**
* Returns the default Error Message of the JOSE Exception.
*/
getDefaultMessage() {
return 'The provided JOSE Header is invalid.';
}
}
exports.InvalidJoseHeaderException = InvalidJoseHeaderException;