Home | History | Annotate | Download | only in emma

Lines Matching refs:message

23      * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
32 * @param message the detail message [can be null]
34 public EMMAException (final String message)
36 super (message);
40 * Constructs an exception with given error message/code and null cause.
42 * @param message the detail message [can be null]
43 * @param arguments message format parameters [can be null or empty]
47 public EMMAException (final String message, final Object [] arguments)
49 super (message, arguments);
53 * Constructs an exception with null error message/code and given cause.
63 * Constructs an exception with given error message/code and given cause.
65 * @param message the detail message [can be null]
68 public EMMAException (final String message, final Throwable cause)
70 super (message, cause);
74 * Constructs an exception with given error message/code and given cause.
76 * @param message the detail message [can be null]
77 * @param arguments message format parameters [can be null or empty]
82 public EMMAException (final String message, final Object [] arguments, final Throwable cause)
84 super (message, arguments, cause);