Constructors Summary |
---|
public ELException()Creates an ELException with no detail message.
super ();
|
public ELException(String pMessage)Creates an ELException with the provided detail message.
super (pMessage);
|
public ELException(Throwable pRootCause)Creates an ELException with the given root cause.
super( pRootCause.getLocalizedMessage() );
mRootCause = pRootCause;
|
public ELException(String pMessage, Throwable pRootCause)Creates an ELException with the given detail message and root cause.
super (pMessage);
mRootCause = pRootCause;
|