
net.aholbrook.paseto.exception.PasetoStringException Maven / Gradle / Ivy
package net.aholbrook.paseto.exception;
public class PasetoStringException extends PasetoException {
private final String token;
public PasetoStringException(String s, String token) {
super(s);
this.token = token;
}
public String getToken() {
return token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy