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

com.github.life.lab.leisure.common.model.expression.ExpressionException Maven / Gradle / Ivy

There is a newer version: 0.0.12.RELEASE
Show newest version
package com.github.life.lab.leisure.common.model.expression;

/**
 * 自定义 jpa 表达式异常
 *
 * @author weichao.li ([email protected])
 * @date 2018/9/16
 */
public class ExpressionException extends IllegalArgumentException {

    public ExpressionException(String msg) {
        super(msg);
    }

    public ExpressionException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy