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