exitWithError function

void exitWithError(
  1. String message
)

Implementation

void exitWithError(String message) {
  error(message);
  exit(2);
}