errorLn method

void errorLn(
  1. String message
)

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

Implementation

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