| 4 | * Base error for all chat provider errors. |
| 5 | */ |
| 6 | export class ChatProviderError extends Error { |
| 7 | constructor(message: string) { |
| 8 | super(message); |
| 9 | this.name = 'ChatProviderError'; |
nothing calls this directly
no outgoing calls
no test coverage detected