export class NotificationDomainError extends Error { readonly name: string = 'NotificationDomainError'; constructor(message: string) { super(message); Object.setPrototypeOf(this, new.target.prototype); } }