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

com.github.yooryan.advancequery.exception.AdvanceQueryException Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.yooryan.advancequery.exception;

/**
 * @author linyunrui
 */
public class AdvanceQueryException extends RuntimeException{

    private static final long serialVersionUID = 1L;

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

    public AdvanceQueryException(Throwable throwable) {
        super(throwable);
    }

    public AdvanceQueryException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy