Adds the error message to the message buffer #info. @param msg error message @param ext error extension @return false
(final String msg, final Object... ext)
| 311 | * @return {@code false} |
| 312 | */ |
| 313 | protected final boolean error(final String msg, final Object... ext) { |
| 314 | info.reset(); |
| 315 | info.addExt(msg == null ? "" : msg, ext); |
| 316 | return false; |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Adds information on command execution. |