com.github.yooryan.advancequery.exception.AdvanceQueryException 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 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);
}
}