results.add(resultLine);
}
} catch (SQLException se) {
logger.error("[Exception][ReportFacadeEJB.getReportResult] Exception Thrown: " + se);
logger.error("> Caused by: " + se);
throw new EJBException(se);
}
reportResult.setTitles(getTitles(reportId));
reportResult.setResults(results);
return reportResult;
} catch (Exception e) {
throw new EJBException(e);
} finally {
if (resultSet != null) {
try {
resultSet.close();
} catch (SQLException e) {