All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.conveyal.gtfs.error.URLParseError Maven / Gradle / Ivy

package com.conveyal.gtfs.error;

import java.io.Serializable;

/** Represents a problem parsing a URL field from a GTFS feed. */
public class URLParseError extends GTFSError implements Serializable {
    public static final long serialVersionUID = 1L;

    public URLParseError(String file, long line, String field) {
        super(file, line, field);
    }

    @Override public String getMessage() {
        return "Could not parse URL (format should be ://?#).";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy