implement an endpoint for running one or more labelled blocks in a workflow (#2878)
This commit is contained in:
@@ -128,6 +128,11 @@ class UnknownBlockType(SkyvernException):
|
||||
super().__init__(f"Unknown block type {block_type}")
|
||||
|
||||
|
||||
class BlockNotFound(SkyvernException):
|
||||
def __init__(self, block_label: str) -> None:
|
||||
super().__init__(f"Block {block_label} not found")
|
||||
|
||||
|
||||
class WorkflowNotFound(SkyvernHTTPException):
|
||||
def __init__(
|
||||
self,
|
||||
|
||||
Reference in New Issue
Block a user