Creates a new Message without a cause. @param errorId The enum id for the error @param messageFormat Format string @param arguments format string arguments
(ErrorId errorId, String messageFormat, Object... arguments)
| 123 | * @param arguments format string arguments |
| 124 | */ |
| 125 | public static Message create(ErrorId errorId, String messageFormat, Object... arguments) { |
| 126 | return create(errorId, null, messageFormat, arguments); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Creates a new Message with the given cause. |
no test coverage detected