* Initializes the search manager.
()
| 141 | * Initializes the search manager. |
| 142 | */ |
| 143 | async initialize(): Promise<void> { |
| 144 | try { |
| 145 | await super.initialize(); |
| 146 | // Add any search-specific initialization here |
| 147 | } catch (error) { |
| 148 | const message = error instanceof Error ? error.message : 'Unknown error occurred'; |
| 149 | throw new Error(`Failed to initialize SearchManager: ${message}`); |
| 150 | } |
| 151 | } |
| 152 | } |
nothing calls this directly
no test coverage detected