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

com.belladati.sdk.exception.interval.NullIntervalException Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
package com.belladati.sdk.exception.interval;

import com.belladati.sdk.intervals.IntervalUnit;

/**
 * Indicates that a parameter was null during interval creation. This
 * can be the interval's unit, start, or end.
 * 
 * @author Chris Hennigfeld
 */
public class NullIntervalException extends InvalidIntervalException {

	/** The serialVersionUID */
	private static final long serialVersionUID = 8579126864594603415L;

	public NullIntervalException(IntervalUnit intervalUnit, String message) {
		super(intervalUnit, message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy