@Override
public boolean setPropertyValue(String property, String value) throws PropertyDoesNotExistException {
try {
return this.props.setProperty(property, value, true);
} catch (NoSuchPropertyException e) {
throw new PropertyDoesNotExistException(property, e);
}
}