public class MappingException extends CSAppFrameworkException
PersistenceEngine
and mapping classes are supposed to throw instances
of this class in case of internal errors. Such errors are typically
encapsulating lower level errors, for example instances of
JAXRException
.Constructor and Description |
---|
MappingException(java.lang.String pMessage)
Creates a new instance with the given detail message and no cause.
|
MappingException(java.lang.String pMessage,
java.lang.Throwable pCause)
Creates a new instance with the given detailed message and cause.
|
MappingException(java.lang.Throwable pCause)
Creates a new instance with the given cause.
|
public MappingException(java.lang.String pMessage, java.lang.Throwable pCause)
pMessage
- The detailed message.pCause
- The exceptions cause.public MappingException(java.lang.String pMessage)
pMessage
- The detail message.public MappingException(java.lang.Throwable pCause)
Throwable.getMessage()
on the cause.pCause
- The exceptions cause.