90919293949596
public static String getSetting(String key) throws ApplicationSettingsException{ validateSuccessfulPropertyFileLoad(); if (properties.containsKey(key)){ return properties.getProperty(key); } throw new UnspecifiedApplicationSettingsException(key); }
195196197198199200201202203204
}else{ validateSuccessfulPropertyFileLoad(); if (properties.containsKey(key)){ rawValue=properties.getProperty(key); }else{ throw new UnspecifiedApplicationSettingsException(key); } } return deriveAbsoluteValueImpl(rawValue); }
96979899100101102