cn.easyproject.easymybatis.pagination.EasyMyBatisPaginationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easymybatis-pagination Show documentation
Show all versions of easymybatis-pagination Show documentation
EasyMyBatis Pagination is a generic paging plugin for the MyBaits framework. Provides the PageBean automatic paging data encapsulation, the EasyCriteria paging condition object, and the automated paging SQL that supports common databases.
package cn.easyproject.easymybatis.pagination;
/**
* EasyMyBatis Pagination Exception
*
* @author Ray
* @author [email protected]
* @author easyproject.cn
* @see https://github.com/ushelp/EasyMyBatisPagination
* @since 1.0.0
*/
public class EasyMyBatisPaginationException extends RuntimeException{
private static final long serialVersionUID = 1L;
public EasyMyBatisPaginationException(String msg) {
super(msg);
}
}