Raise a predefined message with some number of parameters for the StringTemplate but for which there is no location information possible. @param errorType The Message Descriptor @param args The arguments to pass to the StringTemplate
(ErrorType errorType, Object... args)
| 145 | * @param args The arguments to pass to the StringTemplate |
| 146 | */ |
| 147 | public void toolError(ErrorType errorType, Object... args) { |
| 148 | toolError(errorType, null, args); |
| 149 | } |
| 150 | |
| 151 | public void toolError(ErrorType errorType, Throwable e, Object... args) { |
| 152 | ToolMessage msg = new ToolMessage(errorType, e, args); |
no test coverage detected