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

com.github.liangbaika.validate.exception.ParamsCheckException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.github.liangbaika.validate.exception;

/**
 * 参数校验异常 未知异常
 *
 * @author liangbaikai
 * @version 0.5.0
 * @date 2020/5/15 18:14
 * @since 0.5.0
 */
public class ParamsCheckException extends ParamsInValidException {

    public ParamsCheckException() {
    }

    public ParamsCheckException(String message) {
        super(message);
    }

    public ParamsCheckException(String message, Throwable cause) {
        super(message, cause);
    }

    public ParamsCheckException(Throwable cause) {
        super(cause);
    }

    public ParamsCheckException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy