*/
public T create() {
try {
return destinationClass.newInstance();
} catch (InstantiationException exception) {
throw new TranslationException(String.format(
"Error while instantiating %s", destinationClass),
exception);
} catch (IllegalAccessException exception) {
throw new TranslationException(String.format(
"Not allowed to instantiate %s", destinationClass),
exception);
}
}