Package com.deltaxml.core.exceptions
Class PDConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.core.exceptions.PDConfigurationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DynamicPDFormatException,PDAdvancedConfigException,PDFilterConfigurationException,StaticPDFormatException
Indicates an error condition in the Pipeline Description format.
This class is the super-class of most of the checked exceptions thrown by methods associated with the Pipeline Description format. As such it could be used for simplified, coarse-grain catch or throws clauses.
- Since:
- 7.2
- Author:
- Nigel Whitaker
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPDConfigurationException(String message) Creates a newPDConfigurationException.PDConfigurationException(String message, Throwable t) Creates a newPDConfigurationException.Creates a newPDConfigurationException. -
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
-
PDConfigurationException
Creates a newPDConfigurationException.- Parameters:
message- The exception message String
-
PDConfigurationException
Creates a newPDConfigurationException.- Parameters:
t- A nested throwable should it have lead to or caused this exception
-
PDConfigurationException
Creates a newPDConfigurationException.- Parameters:
message- The exception message Stringt- A nested throwable should it have lead to or caused this exception
-