cn.ocoop.shiro.authc.IncorrectCaptchaException Maven / Gradle / Ivy
package cn.ocoop.shiro.authc;
import org.apache.shiro.authc.IncorrectCredentialsException;
public class IncorrectCaptchaException extends IncorrectCredentialsException {
public IncorrectCaptchaException() {
super();
}
public IncorrectCaptchaException(String message) {
super(message);
}
public IncorrectCaptchaException(Throwable cause) {
super(cause);
}
public IncorrectCaptchaException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy