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

com.link_intersystems.graph.CycleException Maven / Gradle / Ivy

Go to download

There is a newer version: 1.9.7
Show newest version
package com.link_intersystems.graph;

/**
 * @author René Link {@literal }
 */
public class CycleException extends RuntimeException {

    private Object cycleCause;

    public CycleException(Object cycleCause) {
        this.cycleCause = cycleCause;
    }

    public Object getCycleCause() {
        return cycleCause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy