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

com.mahanaroad.toposort.CyclicDependencyException Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy