* is not initialized, which can be the case if the report was not initialized,
* or if the report was closed (using for example the {@link #finializeReport()} method.
*/
public Report getReport() throws ReportNotInitializedException{
if(report == null)
throw new ReportNotInitializedException(reportNotInitializedException);
return report;
}