Presupuestador_web/shared/lib/contexts/common/domain/EntityError.ts

7 lines
155 B
TypeScript
Raw Normal View History

2024-04-23 15:29:38 +00:00
export class EntityError extends Error {
constructor(field: string, message?: string) {
super(message);
this.name = this.constructor.name;
}
}