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