Package com.deltaxml.core.exceptions
Class DuplicateStepNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.core.exceptions.PipelineException
com.deltaxml.core.exceptions.DuplicateStepNameException
- All Implemented Interfaces:
Serializable
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the PipelineStep name that has caused the Exception to be thrown.Methods inherited from class com.deltaxml.core.exceptions.PipelineException
getPipelineIdMethods inherited from class com.deltaxml.core.exceptions.DeltaXMLException
getCause, getThrowableMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DuplicateStepNameException
-
-
Method Details
-
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
-