選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

errors.py 310B

12345678
  1. from core.workflow.nodes.base import BaseNode
  2. class WorkflowNodeRunFailedError(Exception):
  3. def __init__(self, node_instance: BaseNode, error: str):
  4. self.node_instance = node_instance
  5. self.error = error
  6. super().__init__(f"Node {node_instance.node_data.title} run failed: {error}")