try {
return (DynamoDBMarshaller<Object>) clazz.newInstance();
} catch (InstantiationException e) {
throw new DynamoDBMappingException(
"Failed to instantiate custom marshaler for class " + clazz,
e);
} catch (IllegalAccessException e) {
throw new DynamoDBMappingException(
"Failed to instantiate custom marshaler for class " + clazz,
e);
}
}