Package civquest.parser.ruleset.exception

Examples of civquest.parser.ruleset.exception.MissingSectionException


    public Section getSection(String name, String commentIfFail)
    throws RulesetException {
   
    Section retSection = sections.get(name);
    if (retSection == null) {
      throw new MissingSectionException(this, name, commentIfFail);
    } else {
      return retSection;
    }
  }
View Full Code Here

TOP

Related Classes of civquest.parser.ruleset.exception.MissingSectionException

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.