[INF] Not supported step: Process Error Handler, step type: ProcessLevelExceptionHandlingStep
2025-05-12 13:27:50.114 +02:00 [ERR] [Process - ] An error occured in step [79e26b28-7e32-0af4-272d-c9631adb13b0 - target Xml DocumentPath] Exception: System.NotSupportedException: Step is not supported
at Robotiq.ScriptExecutor.StepHandlers.StepHandlerCreator.CreateInstanceForChildLoopSteps(Step instance, Option`1 callingStepHandlerInfo, IVariableRepository variableRepository)
at Robotiq.ScriptExecutor.StepHandlers.StepHandlerCreator.CreateForInstance(Step instance, IStepHandlerCreator stepHandlerCreator, Option`1 callingStepHandlerInfo, IVariableRepository variableRepository)
at Robotiq.ScriptExecutor.ConsecutiveStepHandlersCreatorHelper.HandleSteps(IEnumerable`1 steps, IStepHandlerCreator stepHandlerCreator, Boolean startRobotLocaly, Option`1 containerStepHandlerInfo, IVariableRepository variableRepository, Func`2 callerSpecificLogic)
at Robotiq.ScriptExecutor.Workflow.<>c__DisplayClass5_0.<Run>b__0()
at Robotiq.ScriptExecutor.OperationCaller.TrySafe(Action action, Action`1 exceptionAction)
- Emb asked 1 week ago
- You must login to post comments
I had the same issue. The bug occurred when I downloaded the process, and somehow the error handling portion got copied into the middle of the process. I fixed it by manually uploading the script and moving the error handling steps from the middle of the script to the end, placing them inside the brackets after the last step. Each step enclosed in curly braces {} and separated by commas. The same structure applies to the list of error handling steps. I will share only the visual representation of the structure to clarify my explanation.
{
“robotiqProcessInfo”: {
“id”: “”,
“organizationName”: “”,
“organizationId”: “”,
“name”: “”,
“description”: “”,
“author”: “”,
“version”: “”,
“createdOn”: “”,
“lastModified”: “”
},
“steps”: [
list of process steps
,
{
“children”: [
list of Error Handling steps {}
],
“stepType”: “ProcessLevelExceptionHandlingStep”,
“name”: “Process Error Handler”
}
]
}
- NewUser answered 1 week ago
- You must login to post comments
Please login first to submit.