* @throws SuperCSVReflectionException
*/
private void throwException(final Object destinationObject, final Class variableType, final String methodName,
final Exception e) throws SuperCSVReflectionException {
e.printStackTrace();
throw new SuperCSVReflectionException(String.format("Can't find method '%s(%s)' in class '%s'. "
+ "Is the name correctly spelled in the NameMapping? "
+ "Have you forgot to convert the data so that a wrong set method is called?", methodName, variableType,
destinationObject.getClass().getName()), e);
}