com.link_intersystems.graph.CycleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lis-commons-graph Show documentation
Show all versions of lis-commons-graph Show documentation
Link Intersystems Commons Graph (lis-commons-graph) is a collection of reusable software components
that provide support for graph and tree related programming tasks, such as models and search algorithms.
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;
}
}