errorCLn method

void errorCLn(
  1. String message
)

Rewrite the current error line with message and start the next line.

Implementation

void errorCLn(final String message)
{
  clearError();
  stderr.writeln(message);
}