Package com.belladati.sdk.exception.interval

Examples of com.belladati.sdk.exception.interval.InvalidRelativeIntervalException


   *             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;
  }
View Full Code Here

TOP

Related Classes of com.belladati.sdk.exception.interval.InvalidRelativeIntervalException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.