PrematureJwtException

class PrematureJwtException(val header: JwtHeader, val claims: JwtPayload, message: String) : JwtException(source)

Thrown when a JWT's nbf (not-before) claim indicates the token is not yet valid.

Constructors

Link copied to clipboard
constructor(header: JwtHeader, claims: JwtPayload, message: String)

Properties

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard

The claims of the premature token whose nbf value has not yet been reached.

Link copied to clipboard

The header of the premature token.

Link copied to clipboard
expect open val message: String?