com.zys.mybatis.exception.MybatisZysNotFountException Maven / Gradle / Ivy
package com.zys.mybatis.exception;
import com.zys.mybatis.crud.Query;
/**
* @author zys
* @version 1.0
* @date 2022/1/10 11:54
*/
public class MybatisZysNotFountException extends RuntimeException {
private Query.Page page;
public Query.Page getPage() {
return page;
}
public MybatisZysNotFountException(String message){
super(message);
}
public MybatisZysNotFountException(Query.Page page, String message){
super(message);
this.page = page;
}
public MybatisZysNotFountException(String message, Throwable cause){
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy