export class LLMError extends Error { constructor( message: string, public readonly cause?: unknown, ) { super(message); this.name = "LLMError"; } }