/* 221 */ String dependantName = strtok.nextToken().trim();
/* 222 */ PropertyManager dependant = (PropertyManager)pms.get(dependantName);
/* */
/* 224 */ if (dependant == null)
/* */ {
/* 226 */ throw new LoadPropertiesException("Dependency not found - property file invalid");
/* */ }
/* 228 */ pm.addParent(dependant);
/* */ }
/* */ }
/* */ }
/* */ else
/* */ {
/* 234 */ throw new FileNotFoundException();
/* */ }
/* */ }
/* */ catch (FileNotFoundException e)
/* */ {
/* 239 */ if (verbose)
/* */ {
/* 241 */ System.err.println("Cannot load properties file: " + uri);
/* */ }
/* */ }
/* */ catch (IOException e)
/* */ {
/* 246 */ throw e;
/* */ }
/* */ catch (Exception e)
/* */ {
/* 250 */ throw new LoadPropertiesException("Failed to open properties file: " + e);
/* */ }
/* */ }
/* */ }