javax.xml.bind
Class UnmarshalException
public class UnmarshalException
The
MarshalException is a subclass of the
JAXBException being thrown if the
unmarshalling of a JAXB object failed.
UnmarshalException(String pMessage)- Creates a new
UnmarshalException with the specified
detail message.
|
UnmarshalException(String pMessage, String pErrorCode)- Creates a new
UnmarshalException with the specified
detail message and vendor specific error code.
|
UnmarshalException(String pMessage, String pErrorCode, Throwable pLinkedException)- Creates a new
UnmarshalException with the specified
detail message, error code, and linked exception.
|
UnmarshalException(String pMessage, Throwable pLinkedException)- Creates a new
UnmarshalException with the specified
detail message and linked exception.
|
UnmarshalException(Throwable pLinkedException)- Creates a new
UnmarshalException with the specified
linked exception.
|
UnmarshalException
public UnmarshalException(String pMessage)
Creates a new UnmarshalException with the specified
detail message.
pMessage - The detail message.
UnmarshalException
public UnmarshalException(String pMessage,
String pErrorCode)Creates a new UnmarshalException with the specified
detail message and vendor specific error code.
pMessage - The detail message.pErrorCode - The error code.
UnmarshalException
public UnmarshalException(String pMessage,
String pErrorCode,
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.
UnmarshalException
public UnmarshalException(String pMessage,
Throwable pLinkedException)Creates a new UnmarshalException with the specified
detail message and linked exception.
pMessage - The detail message.pLinkedException - The linked exception.
UnmarshalException
public UnmarshalException(Throwable pLinkedException)
Creates a new UnmarshalException with the specified
linked exception.
pLinkedException - The linked exception.