示例#1
0
 private void checkIfMandatory(
     Map<ConfigurationProperty, List<String>> results, ConfigurationProperty p)
     throws InterpreterPropertyException {
   if (p.isMandatory() && !results.containsKey(p)) {
     throw new InterpreterPropertyException(
         "Mandatory property "
             + p
             + " was not set. "
             + "You can set this property with the -"
             + p.getSwitchName()
             + " switch, "
             + "the -"
             + p.getSwitchShortName()
             + " switch or the "
             + p.getSystemProperty()
             + " system property");
   }
 }