Class ReportEventException

  • All Implemented Interfaces:
    Serializable

    public class ReportEventException
    extends ReportProcessingException
    The ReportEventException is thrown, if there were unrecoverable exceptions during the report processing.
    Author:
    Thomas Morgner
    See Also:
    Serialized Form
    • Constructor Detail

      • ReportEventException

        public ReportEventException​(String message,
                                    List childExceptions)
        Creates an ReportEventException to handle exceptions, that occured during the event dispatching.
        Parameters:
        message - the exception message.
        childExceptions - the collected exceptions.
    • Method Detail

      • getChildExceptions

        public List getChildExceptions()
        Gets the collected child exceptions, that occured during the event dispatching.
        Returns:
        the collected child exceptions.
      • getMessage

        public String getMessage()
        Returns the errort message string of this throwable object.
        Overrides:
        getMessage in class Throwable
        Returns:
        the error message string of this Throwable object if it was created with an error message string; or null if it was created with no error message.
      • printStackTrace

        public void printStackTrace​(PrintWriter writer)
        Prints the stack trace to the specified writer.
        Overrides:
        printStackTrace in class Throwable
        Parameters:
        writer - the writer.
      • printStackTrace

        public void printStackTrace​(PrintStream stream)
        Prints the stack trace to the specified stream.
        Overrides:
        printStackTrace in class Throwable
        Parameters:
        stream - the output stream.