com.healthy.common.security.code.ValidateCodeException Maven / Gradle / Ivy
package com.healthy.common.security.code;
import org.springframework.security.core.AuthenticationException;
/**
* ValidateCodeException
*
* @author xiaomingzhang
*/
public class ValidateCodeException extends AuthenticationException {
private static final long serialVersionUID = -7285211528095468156L;
public ValidateCodeException(String msg) {
super(msg);
}
}