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

net.odbogm.exceptions.ConcurrentModification Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy