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

de.gsi.chart.renderer.spi.hexagon.NoPathFoundException Maven / Gradle / Ivy

package de.gsi.chart.renderer.spi.hexagon;

/**
 * This exception is thrown when the pathfinding algorithm cannot find any path to the goal
 */
public class NoPathFoundException extends Exception {

    private static final long serialVersionUID = 1362775696243612783L;

    public NoPathFoundException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy