UNPKG

@unvision/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

17 lines 650 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JsonWebTokenNotValidYetException = void 0; const jose_exception_1 = require("./jose.exception"); /** * Raised when the provided JSON Web Token is not valid yet. */ class JsonWebTokenNotValidYetException extends jose_exception_1.JoseException { /** * Returns the default Error Message of the JOSE Exception. */ getDefaultMessage() { return 'The provided JSON Web Token is not valid yet.'; } } exports.JsonWebTokenNotValidYetException = JsonWebTokenNotValidYetException; //# sourceMappingURL=jsonwebtoken-not-valid-yet.exception.js.map