Presupuestador_web/shared/lib/contexts/common/domain/EntityError.ts
2024-04-23 17:29:38 +02:00

7 lines
155 B
TypeScript

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