| 20 | * `Error.prototype.toString()` reads sensibly. |
| 21 | */ |
| 22 | export class GitError extends Error { |
| 23 | readonly code: string; |
| 24 | constructor(code: string, message: string, options?: { cause?: unknown }) { |
| 25 | super(message, options); |
nothing calls this directly
no outgoing calls
no test coverage detected