Class PipelineExecutionException

All Implemented Interfaces:
Serializable

public class PipelineExecutionException extends AbstractExecutionException
An exception indicating a problem in multiple process stages of a pipeline. Exceptions of this type will generally have suppressed exceptions for the various problems that occurred within a pipeline. The convenience method processExecutionExceptions() provides easy access to these causes.
See Also:
  • Constructor Details

    • PipelineExecutionException

      public PipelineExecutionException()
      Constructs a new PipelineExecutionException instance. The message is left blank (null), and no cause is specified.
    • PipelineExecutionException

      public PipelineExecutionException(String msg)
      Constructs a new PipelineExecutionException instance with an initial message. No cause is specified.
      Parameters:
      msg - the message
    • PipelineExecutionException

      public PipelineExecutionException(Throwable cause)
      Constructs a new PipelineExecutionException instance with an initial cause. If a non-null cause is specified, its message is used to initialize the message of this PipelineExecutionException; otherwise the message is left blank (null).
      Parameters:
      cause - the cause
    • PipelineExecutionException

      public PipelineExecutionException(String msg, Throwable cause)
      Constructs a new PipelineExecutionException instance with an initial message and cause.
      Parameters:
      msg - the message
      cause - the cause
  • Method Details

    • processExecutionExceptions

      public List<ProcessExecutionException> processExecutionExceptions()
      Returns the list of suppressed process execution exceptions.
      Returns:
      the list of suppressed process execution exceptions