net.odbogm.exceptions.ConcurrentModification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odbogm Show documentation
Show all versions of odbogm Show documentation
ODBOGM let you store/retrieve objects in a OrientDB graph structure in a clear and simple way.
The newest version!
package net.odbogm.exceptions;
import com.orientechnologies.orient.core.exception.OConcurrentModificationException;
import net.odbogm.Transaction;
/**
* Indica que un mismo elemento fue modificado por distintas transacciones a la
* vez.
*
* @author jbertinetti
*/
public class ConcurrentModification extends OdbogmException {
public ConcurrentModification(OConcurrentModificationException cause,
Transaction transaction) {
super(cause, transaction);
}
}