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

org.onetwo.dbm.exception.EntityInsertException Maven / Gradle / Ivy

package org.onetwo.dbm.exception;



@SuppressWarnings("serial")
public class EntityInsertException extends UpdateCountException{

	final private Object entity;
	
	public EntityInsertException(Object obj, int expectCount, int effectiveCount) {
		super("entity["+obj+"] insert error.", expectCount, effectiveCount);
		this.entity = obj;
	}

	public Object getEntity() {
		return entity;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy