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

org.opentripplanner.util.InvalidTimeException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.util;

/**
 * Indicates the "time" is not on the expected format.
 */
public class InvalidTimeException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    InvalidTimeException(String timeString, String expectedFormat) {
        super("invalid time: '" + timeString + "', expected format: '" + expectedFormat + "'");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy