public class MapperException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
MapperException()
Constructs a
MapperException with no detail
message. |
MapperException(java.lang.String message)
Constructs a
MapperException with the specified detailed
message. |
MapperException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
MapperException with the specified detailed
message and a cause. |
MapperException(java.lang.Throwable cause)
Constructs a
MapperException with the
specified just a cause. |
public MapperException()
MapperException with no detail
message.public MapperException(java.lang.String message)
MapperException with the specified detailed
message.message - is the detailled message.public MapperException(java.lang.String message,
java.lang.Throwable cause)
MapperException with the specified detailed
message and a cause.message - is the detailled message.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.public MapperException(java.lang.Throwable cause)
MapperException with the
specified just a cause.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.