Explorar el Código

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

Signed-off-by: -LAN- <laipz8200@outlook.com>
-LAN- hace 4 meses
padre
commit
03ddee3663
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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