if (getConverter() != null) {
try {
valueToValidate = getConverter().convertToModel(fieldValue,
getModelType(), getLocale());
} catch (ConversionException e) {
throw new InvalidValueException(getConversionError(
getConverter().getModelType(), e));
}
}
List<InvalidValueException> validationExceptions = new ArrayList<InvalidValueException>();