Class DuplicateStepNameException

All Implemented Interfaces:
Serializable

public class DuplicateStepNameException extends PipelineException

Indicates that an attempt has been made to declare multiple PipelineSteps with the same name in a single Pipeline.

Because various methods in a Pipeline refer to PipelineSteps by name, there must be no duplicate names within the Pipeline as this would cause ambiguity in respect to these references.

Since:
7.0
See Also:
  • Constructor Details

    • DuplicateStepNameException

      public DuplicateStepNameException(String message, String name)
  • Method Details

    • getDuplicateStepName

      public String getDuplicateStepName()
      Returns the PipelineStep name that has caused the Exception to be thrown.
      Returns:
      a String representing the name of the PipelineStep whose addition attempt caused the Exception