export class DomainError extends Error { code: string; constructor(message: string, code = "domain_error") { super(message); this.code = code; } }