ExpiredJwtException

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

Thrown when a JWT's exp (expiration time) claim indicates the token has already expired.

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 expired token whose exp value has passed.

Link copied to clipboard

The header of the expired token.

Link copied to clipboard
expect open val message: String?