3940414243444546
Properties properties = getProperties(); properties.setProperty(name, value); saveProperties(properties); } catch (Exception ex) { throw new PropertiesException(PropertiesException.ERROR_SETTING_PROPERTIES_EXCEPTION, ex); } }
5152535455565758
try { Properties properties = getProperties(); return properties.getProperty(name); } catch (Exception ex) { throw new PropertiesException(PropertiesException.ERROR_GETTING_PROPERTIES_EXCEPTION, ex); } }