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

com.graphhopper.util.exceptions.PointOutOfBoundsException Maven / Gradle / Ivy

package com.graphhopper.util.exceptions;

/**
 * Refinement of the CannotFindPointException that indicates that a point is placed out of the graphs bounds
 *
 * @author Robin Boldt
 */
public class PointOutOfBoundsException extends PointNotFoundException {
    public PointOutOfBoundsException(String var1, int pointIndex) {
        super(var1, pointIndex);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy