export class ConfigValidationError extends Error { constructor(message) { super(message); this.name = 'ConfigValidationError' } } export class ConfigNotFoundError extends Error { constructor(message) { super(message); this.name = 'ConfigNotFoundError' } }