com.objectsql.exception.ORMBatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-sql Show documentation
Show all versions of object-sql Show documentation
Lightweight Object SQL Relational Mapping (OSRM)
The newest version!
package com.objectsql.exception;
/**
* 项目名称: object-sql
* 描述: Table
* 创建时间:2020/3/13 10:02
* 公司信息:objectsql
*
* @author huangyonghua, [email protected]
*/
public class ORMBatchException extends ORMException{
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;
}
}