Package org.pentaho.reporting.engine.classic.core

Examples of org.pentaho.reporting.engine.classic.core.ReportProcessingException


  }

  public void summaryRowEnd(final DefaultOutputFunction outputFunction,
                            final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("Crosstab-column groups handler cannot contain summary-rows");
  }
View Full Code Here


  }

  public void summaryRow(final DefaultOutputFunction outputFunction,
                         final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("Crosstab-column groups handler cannot contain summary-rows");
  }
View Full Code Here

  }

  public void itemsStarted(final DefaultOutputFunction outputFunction,
                           final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a detail band. Never.");
  }
View Full Code Here

  }

  public void itemsAdvanced(final DefaultOutputFunction outputFunction,
                            final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a detail band. Never.");
  }
View Full Code Here

  }

  public void itemsFinished(final DefaultOutputFunction outputFunction,
                            final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a detail band. Never.");
  }
View Full Code Here

  }

  public void summaryRowStart(final DefaultOutputFunction outputFunction,
                              final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a summary band. Never.");
  }
View Full Code Here

  }

  public void summaryRowEnd(final DefaultOutputFunction outputFunction,
                            final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a summary band. Never.");
  }
View Full Code Here

  }

  public void summaryRow(final DefaultOutputFunction outputFunction,
                         final ReportEvent event) throws ReportProcessingException
  {
    throw new ReportProcessingException("A crosstab-other-group cannot contain a summary band. Never.");
  }
View Full Code Here

    {
      throw re;
    }
    catch (Exception re)
    {
      throw new ReportProcessingException("Failed to process the report", re);
    }
  }
View Full Code Here

   */
  public void run()
  {
    if (isValid() == false)
    {
      setError(new ReportProcessingException("Error: The task is not configured properly."));
      return;
    }

    setError(null);
    try
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.ReportProcessingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.