| 73 | * root. CLI exit code: 128. |
| 74 | */ |
| 75 | export class PathOutsideRepoError extends GitError { |
| 76 | constructor(path: string, dir: string, options?: { cause?: unknown }) { |
| 77 | super("EPATHOUTSIDE", `path '${path}' is outside the repository at ${dir}`, options); |
| 78 | this.name = "PathOutsideRepoError"; |
nothing calls this directly
no outgoing calls
no test coverage detected