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