// Removing unused error classes export class ValidationError extends Error { constructor(message: string) { super(message); this.name = 'ValidationError'; } }