5 references to GetErrorMessage
System.Diagnostics.Process (5)
src\libraries\Common\src\Interop\Unix\Interop.Errors.cs (1)
150return $"RawErrno: {RawErrno} Error: {Error} GetErrorMessage: {GetErrorMessage()}"; // No localization required; text is member names used for debugging purposes
src\libraries\Common\src\Interop\Unix\System.Native\Interop.GetPwUid.cs (1)
93throw new IOException(errorInfo.GetErrorMessage(), errorInfo.RawErrno);
System\Diagnostics\Process.Unix.cs (3)
499throw CreateExceptionForErrorStartingProcess(errno.GetErrorMessage(), errno.RawErrno, startInfo.FileName, cwd); 546throw CreateExceptionForErrorStartingProcess(new Interop.ErrorInfo(errno).GetErrorMessage(), errno, resolvedFilename, cwd); 1052throw new Win32Exception(errorInfo.RawErrno, errorInfo.GetErrorMessage());