Package org.pgcodekeeper.core.exception
Class XmlReaderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pgcodekeeper.core.exception.XmlReaderException
- All Implemented Interfaces:
Serializable
Exception thrown when XML reading operations fail during JDBC metadata processing.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new XML reader exception with no message or cause.XmlReaderException(String message) Creates a new XML reader exception with the specified message.XmlReaderException(String message, Throwable cause) Creates a new XML reader exception with the specified message and cause.XmlReaderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new XML reader exception with full configuration.XmlReaderException(Throwable cause) Creates a new XML reader exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XmlReaderException
public XmlReaderException()Creates a new XML reader exception with no message or cause. -
XmlReaderException
Creates a new XML reader exception with the specified message.- Parameters:
message- the detail message
-
XmlReaderException
Creates a new XML reader exception with the specified cause.- Parameters:
cause- the cause of this exception
-
XmlReaderException
Creates a new XML reader exception with the specified message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-
XmlReaderException
public XmlReaderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new XML reader exception with full configuration.- Parameters:
message- the detail messagecause- the cause of this exceptionenableSuppression- whether suppression is enabledwritableStackTrace- whether the stack trace should be writable
-