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

jdeps.CyclicGraphException Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
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