
org.opentripplanner.graph_builder.issues.TripUndefinedService 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
The newest version!
package org.opentripplanner.graph_builder.issues;
import org.opentripplanner.graph_builder.issue.api.DataImportIssue;
import org.opentripplanner.transit.model.timetable.Trip;
public record TripUndefinedService(Trip trip) implements DataImportIssue {
private static final String FMT =
"Trip %s references serviceId %s that was not defined in the feed.";
@Override
public String getMessage() {
return String.format(FMT, trip, trip.getServiceId());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy