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