org.shoulder.code.exception.ValidateCodeException Maven / Gradle / Ivy
The newest version!
package org.shoulder.code.exception;
/**
* 验证码相关异常
* @author lym
*/
public class ValidateCodeException extends RuntimeException {
public ValidateCodeException(String msg) {
super(msg);
}
public ValidateCodeException(String msg, Throwable e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy