io.strimzi.kafka.oauth.validator.TokenSignatureException Maven / Gradle / Ivy
/*
* Copyright 2017-2019, Strimzi authors.
* License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
*/
package io.strimzi.kafka.oauth.validator;
public class TokenSignatureException extends TokenValidationException {
{
status(Status.INVALID_TOKEN);
}
public TokenSignatureException() {
super();
}
public TokenSignatureException(String message) {
super(message);
}
public TokenSignatureException(String message, Throwable cause) {
super(message, cause);
}
public TokenSignatureException(Throwable cause) {
super(cause);
}
protected TokenSignatureException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy