com.conveyal.gtfs.error.EmptyTableError 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;
/**
* Created by landon on 4/5/17.
*/
public class EmptyTableError extends GTFSError implements Serializable {
public static final long serialVersionUID = 1L;
public EmptyTableError(String file) {
super(file, 0, null);
}
@Override public String getMessage() {
return String.format("Table is present in zip file, but it has no entries.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy