| 8 | |
| 9 | /** Error class that indicates a fatal merge tool error that cannot be ignored. */ |
| 10 | export class FatalMergeToolError extends Error { |
| 11 | constructor(message: string) { |
| 12 | super(message); |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected