All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.objectsql.exception.ORMBatchException Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy