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

io.gitee.mingbaobaba.apijson.querycondition.query.exception.ConditionException Maven / Gradle / Ivy

There is a newer version: v1.1.0
Show newest version
package io.gitee.mingbaobaba.apijson.querycondition.query.exception;

/**
 * 

条件操作异常类

* * @author yingsheng.ye * @version 1.0.0 * @since 2023/7/10 13:48 */ public class ConditionException extends RuntimeException { public ConditionException() { } public ConditionException(String message) { super(message); } public ConditionException(String message, Throwable cause) { super(message, cause); } public ConditionException(Throwable cause) { super(cause); } public ConditionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy