Package com.deltaxml.core.exceptions
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.core.exceptions.ParserException
- All Implemented Interfaces:
Serializable
Indicates a problem creating or configuring an XML Parser.
This Exception could be thrown when parser creation fails or when attempts are made to set invalid feature or property settings on a parser.
For more specific details, see the exception message or the underlying cause.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionParserException(String message) Constructs a new ParserException.ParserException(String message, Throwable cause) Constructs a new ParserException. -
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
-
ParserException
Constructs a new ParserException.- Parameters:
message- the exception message
-
ParserException
Constructs a new ParserException.- Parameters:
message- the exception messagecause- the underlying cause of this Exception
-