org.opentripplanner.graph_builder.issues.ParentStationNotFound 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.graph_builder.issues;
import org.opentripplanner.graph_builder.DataImportIssue;
import org.opentripplanner.model.StationElement;
public class ParentStationNotFound implements DataImportIssue {
public static final String FMT = "Parent station %s not found. Station element %s will not be "
+ "linked to a parent station.";
final String parentStop;
final StationElement stationElement;
public ParentStationNotFound(StationElement stationElement, String parentStop){
this.stationElement = stationElement;
this.parentStop = parentStop;
}
@Override
public String getMessage() {
return String.format(FMT, parentStop, stationElement);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy