rwadurian/backend/services/admin-service/src/shared/exceptions/domain.exception.ts

7 lines
139 B
TypeScript

export class DomainException extends Error {
constructor(message: string) {
super(message);
this.name = 'DomainException';
}
}