743744745746747748749750
Class<?> modelType = getModelType(); try { return ConverterUtil.convertToModel(fieldValue, (Class<Object>) modelType, getConverter(), locale); } catch (ConversionException e) { throw new ConversionException(getConversionError(modelType, e), e); } }
57585960616263646566
if (text == null) { return null; } String[] parts = text.split(" "); if (parts.length != 2) { throw new ConversionException("Can not convert text to a name: " + text); } return new Name(parts[0], parts[1]); }
418419420421422423424425426427428
fireValueChange(); } catch (Exception e) { logger.error(e); throw new ConversionException(e); } } catch (HibernateException e) { logger.error(e);
746747748749750751752753
} try { return ConverterUtil.convertToModel(fieldValue, (Class<Object>) modelType, getConverter(), locale); } catch (ConversionException e) { throw new ConversionException(getConversionError(modelType), e); } }