| 220 | * external indexer can hit this every debounce cycle. |
| 221 | */ |
| 222 | export class LockUnavailableError extends Error { |
| 223 | constructor(message = 'CodeGraph file lock unavailable; another process is writing') { |
| 224 | super(message); |
| 225 | this.name = 'LockUnavailableError'; |
nothing calls this directly
no outgoing calls
no test coverage detected