Add workspace migration orchestrator + refactor builders + view/viewField action builders (#14383)

This commit is contained in:
Weiko
2025-09-10 16:55:30 +02:00
committed by GitHub
parent fcf3dc4429
commit 61f1a883a0
78 changed files with 2557 additions and 468 deletions
@@ -0,0 +1,6 @@
export class WorkspaceMigrationOrchestratorException extends Error {
constructor(message = 'Workspace migration orchestrator failed') {
super(message);
this.name = 'WorkspaceMigrationOrchestratorException';
}
}