*/
DefaultRangePolicyValue(String value) throws DeviceRepositoryException {
try {
this.value = new Integer(value);
} catch (NumberFormatException nfe) {
throw new DeviceRepositoryException(
exceptionLocalizer.format("value-not-integer", value),
nfe);
}
}