(errorMessage: string)
| 99 | ); |
| 100 | |
| 101 | export const cannotLaunchInTerminal = (errorMessage: string) => |
| 102 | createUserError( |
| 103 | localize('VSND2011', 'Cannot launch debug target in terminal ({0}).', errorMessage), |
| 104 | ErrorCodes.CannotLaunchInTerminal, |
| 105 | ); |
| 106 | |
| 107 | export const cannotLoadEnvironmentVars = (errorMessage: string) => |
| 108 | createUserError( |
no test coverage detected