com.belladati.sdk.exception.interval.NullIntervalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
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);
}
}