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

cloud.agileframework.security.exception.VerificationCodeException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.security.exception;

import org.springframework.security.core.AuthenticationException;

/**
 * @author 佟盟 on 2018/7/4
 */
public class VerificationCodeException extends AuthenticationException {
    public VerificationCodeException() {
        super("无效验证码");
    }

    public VerificationCodeException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy