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

org.securegraph.SecureGraphException Maven / Gradle / Ivy

The newest version!
package org.securegraph;

public class SecureGraphException extends RuntimeException {
    public SecureGraphException(Exception e) {
        super(e);
    }

    public SecureGraphException(String msg, Exception e) {
        super(msg, e);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy