final double value = DEFAULT_NUMBER_FORMAT.parse(entry).doubleValue();
final String currencyCode = money == null ? defaultCurrencyCode : money.getCurrency();
money = new Money(value, currencyCode);
return money;
} catch (final ParseException ex) {
throw new TextEntryParseException("Not a distinguishable money value " + entry, ex);
}
}