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

com.tinkerpop.blueprints.impls.orient.OrientGraphModificationException Maven / Gradle / Ivy

There is a newer version: 3.2.35
Show newest version
package com.tinkerpop.blueprints.impls.orient;

import com.orientechnologies.common.exception.OException;

/**
 * Exception raised during not managed exceptions during update of graph.
 *
 * @author Luca Garulli (l.garulli--(at)--orientdb.com)
 */
public class OrientGraphModificationException extends OException {

  public OrientGraphModificationException(OException exception) {
    super(exception);
  }

  public OrientGraphModificationException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy