Package com.deltaxml.core.exceptions
Class InvalidPipelineException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.core.exceptions.InvalidPipelineException
- All Implemented Interfaces:
Serializable
Used to indicate that the DXP File loaded by a DXPConfiguration is not valid.
This Exception is thrown when calling one of the generate methods on DXPConfiguration or when constructing
a new DXPConfiguration
The Exception could be thrown for one the following reasons:
- The DXP file does not define a comparator pipeline (the root element is not
<comparatorPipeline> - The DXP file uses one of the XPath expression attributes (
whenorxpath) and is being used byDXPConfigurationrather thanDXPConfiguration
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidPipelineException(String message) Creates a new InvalidPipelineException. -
Method Summary
Methods 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
-
InvalidPipelineException
Creates a new InvalidPipelineException.- Parameters:
message- the exception message String
-