org.opentripplanner.model.calendar.impl.UnknownAgencyTimezoneException 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
/* 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 - 2025 Weber Informatics LLC | Privacy Policy