| 17 | |
| 18 | /** Error for failed Git commands. */ |
| 19 | export class GitCommandError extends Error { |
| 20 | // Note: Do not expose the unsanitized arguments as a public property. NodeJS |
| 21 | // could print the properties of an error instance and leak e.g. a token. |
| 22 | constructor(client: GitClient, unsanitizedArgs: string[]) { |
nothing calls this directly
no outgoing calls
no test coverage detected