| 45 | * 128. |
| 46 | */ |
| 47 | export class AlreadyInitializedError extends GitError { |
| 48 | constructor(dir: string, options?: { cause?: unknown }) { |
| 49 | super("EALREADYINIT", `git repository already exists at ${dir}`, options); |
| 50 | this.name = "AlreadyInitializedError"; |
nothing calls this directly
no outgoing calls
no test coverage detected