private <T> void setFieldValue(Field field, T object, Object cellValue) throws ExcelParsingException {
try {
field.set(object, cellValue);
} catch (IllegalArgumentException e) {
LOGGER.error(e.getMessage(), e);
throw new ExcelParsingException("Exception occured while setting field value ", e);
} catch (IllegalAccessException e) {
LOGGER.error(e.getMessage(), e);
throw new ExcelParsingException("Exception occured while setting field value ", e);
}
}