Package com.projity.configuration

Examples of com.projity.configuration.CircularDependencyException


  /**
   * @param baseCalendar The baseCalendar to set.
   */
  public void setBaseCalendar(WorkCalendar baseCalendar) throws CircularDependencyException {
    if (baseCalendar != null && baseCalendar.dependsOn(this)) // avoid circular
      throw new CircularDependencyException(Messages.getString("Calendar.ExceptionCircular"));
    this.baseCalendar = baseCalendar;
  }
View Full Code Here

TOP

Related Classes of com.projity.configuration.CircularDependencyException

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.