org.opentripplanner.model.calendar.impl.MultipleCalendarsForServiceIdException Maven / Gradle / Ivy
/* This file is based on code copied from project OneBusAway, see the LICENSE file for further information. */
package org.opentripplanner.model.calendar.impl;
import org.opentripplanner.model.FeedScopedId;
class MultipleCalendarsForServiceIdException extends RuntimeException {
private static final long serialVersionUID = 1L;
MultipleCalendarsForServiceIdException(FeedScopedId serviceId) {
super("multiple calendars found for serviceId=" + serviceId);
}
}