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