com.iqiny.silly.common.exception.SillyCheckException Maven / Gradle / Ivy
/*
* Copyright iqiny.com
*
* https://gitee.com/iqiny/silly
*
* project name:silly-common
* project description:top silly project pom.xml file
*/
package com.iqiny.silly.common.exception;
/**
* 傻瓜校验异常 (数据校验)
*/
public class SillyCheckException extends BaseSillyException {
public SillyCheckException(String message) {
super(message);
}
public SillyCheckException(String message, Throwable cause) {
super(message, cause);
}
public static SillyCheckException newInstance(String message) {
return new SillyCheckException(message);
}
public static SillyCheckException newInstance(String message, Throwable cause) {
return new SillyCheckException(message, cause);
}
}