(errorMessage: string)
| 105 | ); |
| 106 | |
| 107 | export const cannotLoadEnvironmentVars = (errorMessage: string) => |
| 108 | createUserError( |
| 109 | localize('VSND2029', "Can't load environment variables from file ({0}).", errorMessage), |
| 110 | ErrorCodes.CannotLoadEnvironmentVariables, |
| 111 | ); |
| 112 | |
| 113 | export const cannotFindNodeBinary = (attemptedPath: string) => |
| 114 | createUserError( |
no test coverage detected