Prints a string to standard error. @param string debug string @param ext text optional extensions
(final String string, final Object... ext)
| 153 | * @param ext text optional extensions |
| 154 | */ |
| 155 | public static void err(final String string, final Object... ext) { |
| 156 | System.err.print(info(string, ext)); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Returns a more user-friendly error message for the specified exception. |