com.conveyal.gtfs.error.MissingColumnError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtfs-lib Show documentation
Show all versions of gtfs-lib Show documentation
A library to load and index GTFS feeds of arbitrary size using disk-backed storage
package com.conveyal.gtfs.error;
import java.io.Serializable;
/** Indicates that a column marked as required is entirely missing from a GTFS feed. */
public class MissingColumnError extends GTFSError implements Serializable {
public static final long serialVersionUID = 1L;
public MissingColumnError(String file, String field) {
super(file, 1, field);
}
@Override public String getMessage() {
return String.format("Missing required column.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy