resumeWithError method
Resumes execution, injecting errorMessage as a Python exception.
Implementation
@override
Future<CoreProgressResult> resumeWithError(String errorMessage) async {
final handle = _requireHandle('resumeWithError');
final progress = _bindings.resumeWithError(handle, errorMessage);
return _translateProgressResult(handle, progress);
}