Prints the current stack trace to System.err. @param message error message
(final String message)
| 233 | * @param message error message |
| 234 | */ |
| 235 | public static void stack(final String message) { |
| 236 | stack(message, Short.MAX_VALUE); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Prints the current stack trace to System.err. Used for testing. |