public class UnmarshalException extends JAXBException
The MarshalException is a subclass of the
JAXBException being thrown if the
unmarshalling of a JAXB object failed.
| Constructor and Description |
|---|
UnmarshalException(java.lang.String pMessage)
Creates a new
UnmarshalException with the specified
detail message. |
UnmarshalException(java.lang.String pMessage,
java.lang.String pErrorCode)
Creates a new
UnmarshalException with the specified
detail message and vendor specific error code. |
UnmarshalException(java.lang.String pMessage,
java.lang.String pErrorCode,
java.lang.Throwable pLinkedException)
Creates a new
UnmarshalException with the specified
detail message, error code, and linked exception. |
UnmarshalException(java.lang.String pMessage,
java.lang.Throwable pLinkedException)
Creates a new
UnmarshalException with the specified
detail message and linked exception. |
UnmarshalException(java.lang.Throwable pLinkedException)
Creates a new
UnmarshalException with the specified
linked exception. |
getErrorCode, getLinkedException, printStackTrace, printStackTrace, printStackTrace, setLinkedException, toStringpublic UnmarshalException(java.lang.String pMessage)
Creates a new UnmarshalException with the specified
detail message.
pMessage - The detail message.public UnmarshalException(java.lang.String pMessage,
java.lang.String pErrorCode)
Creates a new UnmarshalException with the specified
detail message and vendor specific error code.
pMessage - The detail message.pErrorCode - The error code.public UnmarshalException(java.lang.Throwable pLinkedException)
Creates a new UnmarshalException with the specified
linked exception.
pLinkedException - The linked exception.public UnmarshalException(java.lang.String pMessage,
java.lang.Throwable pLinkedException)
Creates a new UnmarshalException with the specified
detail message and linked exception.
pMessage - The detail message.pLinkedException - The linked exception.public UnmarshalException(java.lang.String pMessage,
java.lang.String pErrorCode,
java.lang.Throwable pLinkedException)
Creates a new UnmarshalException with the specified
detail message, error code, and linked exception.
pMessage - The detail message.pErrorCode - The vendor specific error code.pLinkedException - The linked exception.