File file = new File(FileUploadConstants.UPLOADS_DIRECTORY, documentId.getDocumentId());
if(!file.exists()) {
throw new RuntimeException("CSV file does not exist");
}
CSVGrid grid = getCSVGrid(file, action.getRowLimit());
return new GetCSVGridResult(grid);
}