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

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

package ws.slink.intervals.exception;

/**
 * Exception thrown on attempt to call unsupported method
 */
public class MethodNotSupportedException extends RuntimeException {

    private static final String MESSAGE_PREFIX = "method not supported for current interval implementation";

    public MethodNotSupportedException() {
        super(MESSAGE_PREFIX);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy