com.github.yingzhuo.spring.security.jwt.exception.SignatureVerificationException Maven / Gradle / Ivy
/* _ _ _ _ _
* ___ _ __ _ __(_)_ __ __ _ ___ ___ ___ _ _ _ __(_) |_ _ _ _ __ __ _| |_ ___| |__
* / __| '_ \| '__| | '_ \ / _` |_____/ __|/ _ \/ __| | | | '__| | __| | | |_____| '_ \ / _` | __/ __| '_ \
* \__ \ |_) | | | | | | | (_| |_____\__ \ __/ (__| |_| | | | | |_| |_| |_____| |_) | (_| | || (__| | | |
* |___/ .__/|_| |_|_| |_|\__, | |___/\___|\___|\__,_|_| |_|\__|\__, | | .__/ \__,_|\__\___|_| |_|
* |_| |___/ |___/ |_|
*
* https://github.com/yingzhuo/spring-security-patch
*/
package com.github.yingzhuo.spring.security.jwt.exception;
import org.springframework.security.core.AuthenticationException;
/**
* @author 应卓
*/
public class SignatureVerificationException extends AuthenticationException {
public SignatureVerificationException() {
this(null);
}
public SignatureVerificationException(String msg) {
super(msg);
}
public SignatureVerificationException(String msg, Throwable t) {
super(msg, t);
}
}