try {
final Class<? extends AttributeConverter> attributeConverterClass = ReflectHelper.classForName(
className
);
attributeConverterDefinitions.add(
new AttributeConverterDefinition( attributeConverterClass.newInstance(), autoApply )
);
}
catch (ClassNotFoundException e) {
throw new AnnotationException( "Unable to locate specified AttributeConverter implementation class : " + className, e );
}