* given end
*/
public RelativeInterval(U intervalUnit, int start, int end) throws NullIntervalException, InvalidAbsoluteIntervalException {
super(intervalUnit);
if (start > end) {
throw new InvalidRelativeIntervalException(intervalUnit, start, end);
}
this.start = start;
this.end = end;
}