org.opentripplanner.routing.error.RoutingValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.routing.error;
import org.opentripplanner.routing.api.response.RoutingError;
import java.util.List;
public class RoutingValidationException extends RuntimeException {
private static final long serialVersionUID = 1L;
private final List routingErrors;
/**
* An error with the input data which results in itineraries not being returned for a type of
* search.
*/
public RoutingValidationException(List routingErrors) {
this.routingErrors = routingErrors;
}
public List getRoutingErrors() {
return routingErrors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy