瀏覽代碼

fix(variable_assigner): change VariableOperatorNodeError to inherit from ValueError (#11951)

Signed-off-by: -LAN- <laipz8200@outlook.com>
-LAN- 4 月之前
父節點
當前提交
03ddee3663
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      api/core/workflow/nodes/variable_assigner/common/exc.py

+ 1 - 1
api/core/workflow/nodes/variable_assigner/common/exc.py

@@ -1,4 +1,4 @@
-class VariableOperatorNodeError(Exception):
+class VariableOperatorNodeError(ValueError):
     """Base error type, don't use directly."""
 
     pass