com.mahanaroad.toposort.CyclicDependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mahana-topo-sort Show documentation
Show all versions of mahana-topo-sort Show documentation
A Java library for performing topological sorting.
package com.mahanaroad.toposort;
/**
* Indicates that the nodes in a {@link GraphNodeSorter} contain a cyclic dependency.
*
*/
public class CyclicDependencyException extends RuntimeException {
private static final long serialVersionUID = -6190114220878667447L;
public CyclicDependencyException() {
//do nothing
}
public CyclicDependencyException(String message) {
super(message);
}
}