ReportExec reportExec = reportExecDAO.find(executionId);
if (reportExec == null) {
throw new NotFoundException("Report execution " + executionId);
}
ReportExecTO reportExecToDelete = binder.getReportExecTO(reportExec);
reportExecDAO.delete(reportExec);
return reportExecToDelete;
}