All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atlassian.connect.spring.internal.jwt.JwtTooEarlyException Maven / Gradle / Ivy

The newest version!
package com.atlassian.connect.spring.internal.jwt;

import java.util.Date;

public class JwtTooEarlyException extends JwtVerificationException {

    public JwtTooEarlyException(Date notBefore, Date now, final int leewaySeconds) {
        super(String.format("Not-before time is %s and time is now %s (%d leeway seconds is allowed)", notBefore, now, leewaySeconds));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy