Class<?> sourceType = PropertyValueGetter.getPropertyTypeSilently(source, sourcePropertyName);
Type[] genericTypes = ReflectHelper.getGenericTypes(converter.getClass(), Converter.class);
String description = ReflectHelper.getTypeArrayDescription(genericTypes);
throw new ApplicationRuntimeException("Mismatch between parameterization type of converter: "
+ converter.getClass().getName() + "(" + description
+ ")), and source type of property being converted: " + source.getClass().getName() + ", property "
+ sourcePropertyName + " (" + sourceType + ")", e);
}
catch (ConversionException e)