Files
gridpilot.gg/packages/automation/domain/errors/AutomationDomainError.ts
2025-12-11 11:25:22 +01:00

8 lines
216 B
TypeScript

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