join method
Implementation
Future join({required String errorMessage}) async {
final process = await this;
final exitCode = await process.exitCode;
if (exitCode != 0) {
throw MhuExitStatusException('$errorMessage (exit status $exitCode)');
}
}