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

com.tinkerpop.rexster.config.GraphConfigurationException Maven / Gradle / Ivy

The newest version!
package com.tinkerpop.rexster.config;

/**
 * Exception thrown when an error occurs while configuring a Graph in a GraphConfiguration implementation.
 *
 * @author Stephen Mallette (http://stephen.genoprime.com)
 */
public class GraphConfigurationException extends Exception {

    public GraphConfigurationException(String msg) {
        super(msg);
    }

    public GraphConfigurationException(Throwable inner) {
        super(inner);
    }

    public GraphConfigurationException(String msg, Throwable inner) {
        super(msg, inner);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy