export class ValidationError extends Error { constructor(message?: string) { super(message); this.name = this.constructor.name; } toJSON() { return { message: this.message, name: this.name, }; } }