mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-07 18:06:52 +08:00
9 lines
310 B
Python
9 lines
310 B
Python
from core.workflow.nodes.base import BaseNode
|
|
|
|
|
|
class WorkflowNodeRunFailedError(Exception):
|
|
def __init__(self, node_instance: BaseNode, error: str):
|
|
self.node_instance = node_instance
|
|
self.error = error
|
|
super().__init__(f"Node {node_instance.node_data.title} run failed: {error}")
|