com.tinkerpop.rexster.config.GraphConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-core Show documentation
Show all versions of rexster-core Show documentation
Core components for extending Rexster.
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);
}
}