in impl/src/main/java/org/apache/geronimo/config/converters/DurationConverter.java [37:47]
public Duration convert(String value) {
if (value != null) {
try {
return Duration.parse(value);
}
catch (DateTimeParseException dtpe) {
throw new IllegalArgumentException(dtpe);
}
}
return null;
}