
jdeps.CyclicGraphException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdeps Show documentation
Show all versions of jdeps Show documentation
Java library for simple in-memory topological sorts.
package jdeps;
public class CyclicGraphException extends Exception {
public CyclicGraphException() {
}
public CyclicGraphException(String message) {
super(message);
}
public CyclicGraphException(String message, Throwable cause) {
super(message, cause);
}
public CyclicGraphException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy