Constructors Summary |
---|
public EMMAException()Constructs an exception with null message and null cause.
|
public EMMAException(String message)Constructs an exception with given error message/code and null cause.
super (message);
|
public EMMAException(String message, Object[] arguments)Constructs an exception with given error message/code and null cause.
super (message, arguments);
|
public EMMAException(Throwable cause)Constructs an exception with null error message/code and given cause.
super (cause);
|
public EMMAException(String message, Throwable cause)Constructs an exception with given error message/code and given cause.
super (message, cause);
|
public EMMAException(String message, Object[] arguments, Throwable cause)Constructs an exception with given error message/code and given cause.
super (message, arguments, cause);
|