Debugger Continuity (BE) (#3314)

This commit is contained in:
Jonathan Dobson
2025-08-28 20:05:24 -04:00
committed by GitHub
parent 916ab6c067
commit 1067e9a076
12 changed files with 306 additions and 2 deletions

View File

@@ -754,3 +754,8 @@ class NoTOTPSecretFound(SkyvernException):
class NoElementFound(SkyvernException):
def __init__(self) -> None:
super().__init__("No element found.")
class OutputParameterNotFound(SkyvernException):
def __init__(self, block_label: str, workflow_permanent_id: str) -> None:
super().__init__(f"Output parameter for {block_label} not found in workflow {workflow_permanent_id}")