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