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

ws.slink.intervals.exception.InvalidIntervalFormatException Maven / Gradle / Ivy

package ws.slink.intervals.exception;

/**
 * Exception thrown on attempt to parse invalid interval string
 */
public class InvalidIntervalFormatException extends RuntimeException {

    private static final String MESSAGE_PREFIX = "invalid interval formatted string";

    public InvalidIntervalFormatException() {
        super(MESSAGE_PREFIX);
    }
    public InvalidIntervalFormatException(String input) {
        super(MESSAGE_PREFIX + ": " + input);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy