public class PropertyException extends JAXBException
The PropertyException
is a subclass of the
JAXBException
being thrown if setting
or getting a property failed.
Constructor and Description |
---|
PropertyException(java.lang.String pMessage)
Creates a new
PropertyException with the specified
detail message. |
PropertyException(java.lang.String pName,
java.lang.Object pValue)
Creates a new
PropertyException> by invoking
|
PropertyException(java.lang.String pMessage,
java.lang.String pErrorCode)
Creates a new
PropertyException with the specified
detail message and vendor specific error code. |
PropertyException(java.lang.String pMessage,
java.lang.String pErrorCode,
java.lang.Throwable pLinkedException)
Creates a new
PropertyException with the specified
detail message, error code, and linked exception. |
PropertyException(java.lang.String pMessage,
java.lang.Throwable pLinkedException)
Creates a new
PropertyException with the specified
detail message and linked exception. |
PropertyException(java.lang.Throwable pLinkedException)
Creates a new
PropertyException with the specified
linked exception. |
getErrorCode, getLinkedException, printStackTrace, printStackTrace, printStackTrace, setLinkedException, toString
public PropertyException(java.lang.String pMessage)
Creates a new PropertyException
with the specified
detail message.
pMessage
- The detail message.public PropertyException(java.lang.String pMessage, java.lang.String pErrorCode)
Creates a new PropertyException
with the specified
detail message and vendor specific error code.
pMessage
- The detail message.pErrorCode
- The error code.public PropertyException(java.lang.Throwable pLinkedException)
Creates a new PropertyException
with the specified
linked exception.
pLinkedException
- The linked exception.public PropertyException(java.lang.String pMessage, java.lang.Throwable pLinkedException)
Creates a new PropertyException
with the specified
detail message and linked exception.
pMessage
- The detail message.pLinkedException
- The linked exception.public PropertyException(java.lang.String pMessage, java.lang.String pErrorCode, java.lang.Throwable pLinkedException)
Creates a new PropertyException
with the specified
detail message, error code, and linked exception.
pMessage
- The detail message.pErrorCode
- The vendor specific error code.pLinkedException
- The linked exception.public PropertyException(java.lang.String pName, java.lang.Object pValue)
Creates a new PropertyException> by invoking
PropertyException(String)
with a message derived from
pName
and pValue.toString()
.
pName
- A Property name.pValue
- A property value.