![JAR search and dependency download from the Maven repository](/logo.png)
com.ursful.framework.orm.exception.ORMBatchException Maven / Gradle / Ivy
The newest version!
package com.ursful.framework.orm.exception;
/**
* 项目名称: object-sql
* 描述: Table
* 创建时间:2020/3/13 10:02
* 公司信息:厦门海迈科技股份有限公司>研发中心>框架组
*
* @author huangyonghua, [email protected]
*/
public class ORMBatchException extends RuntimeException{
private Integer index;
private Integer count;
public ORMBatchException(Exception e){
super(e);
}
public ORMBatchException(Exception e, Integer count, Integer index){
super(e);
this.index = index;
this.count = count;
}
public Integer getIndex() {
return index;
}
public void setIndex(Integer index) {
this.index = index;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy