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

org.opentripplanner.model.calendar.impl.UnknownAgencyTimezoneException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
/* This file is based on code copied from project OneBusAway, see the LICENSE file for further information. */
package org.opentripplanner.model.calendar.impl;

public class UnknownAgencyTimezoneException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public UnknownAgencyTimezoneException(String agencyName, String timezone) {
        super("unknown timezone \"" + timezone + "\" for agency \"" + agencyName + "\"");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy