Package org.cishell.utility.datastructure.datamodel.exception

Examples of org.cishell.utility.datastructure.datamodel.exception.ModelStructureException


    } else if (area.getParentComponent() != getParentComponent()) {
      String exceptionMessage = String.format(
        "Tried to manually add area %s to area %s, but parent components do not match.",
        name,
        getName());
      throw new ModelStructureException(exceptionMessage);
    } else {
      this.areas.put(name, area);
    }
  }
View Full Code Here

TOP

Related Classes of org.cishell.utility.datastructure.datamodel.exception.ModelStructureException

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.