com.github.yooryan.advancequery.exception.SqlAutomaticBuildException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-advance-query Show documentation
Show all versions of mybatis-advance-query Show documentation
This is a MyBaits plug-in that provides automatic build of advanced query.
package com.github.yooryan.advancequery.exception;
/**
* @author linyunrui
*/
public class SqlAutomaticBuildException extends Exception {
public SqlAutomaticBuildException(String message) {
super(message);
}
public SqlAutomaticBuildException(String message, Throwable cause) {
super(message, cause);
}
public SqlAutomaticBuildException(Throwable cause) {
super(cause);
}
}