Class ParserInstantiationException
- All Implemented Interfaces:
Serializable
Thrown to indicate a problem instantiating or configuring a SAX Parser.
The PipelinedComparator makes use of SAX Parsers in its implementation. If there are problems instantiating or configuring these parsers this exception may be thrown.
When using JAXP the getCause() method should provide details of the underlying
ParserConfigurationException or SAXException. Alternatively if the
bypassJAXPFactories setting is in use getCause() may provide a ClassNotFoundException, InstantiationException
or IllegalAccessException with details of the underlying cause.
If this exception is encountered we suggest checking any JAXP parser factory property settings and classpath contents, or if the bypassJAXPFactories setting is in effect, checking that xercesImpl.jar is available on the classpath. If the problems cannot be resolved please contact support for further assistance.
- Author:
- Nigel Whitaker
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionParserInstantiationException(String message, Throwable t) Creates a new ParserInstantiationException. -
Method Summary
Methods inherited from class com.deltaxml.core.exceptions.DeltaXMLError
getCause, getThrowableMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParserInstantiationException
Creates a new ParserInstantiationException.- Parameters:
message- The message stringt- A nested throwable should it have lead to or caused this exception
-