reportWithMsg static method

void reportWithMsg(
  1. String errorMsg
)

Implementation

static void reportWithMsg(String errorMsg) {
  try {
    throw Exception(errorMsg);
  } catch (e, stack) {
    report(e: e, stack: stack);
    rethrow;
  }
}