diff options
author | Kalkere Ramesh, Sharan <sk720x@att.com> | 2020-11-12 11:23:42 -0500 |
---|---|---|
committer | Kalkere Ramesh, Sharan <sk720x@att.com> | 2020-11-12 11:23:42 -0500 |
commit | 7bf89598ae02ddc799eb240c1a1d0d7319dadda9 (patch) | |
tree | 39f20cdb380d98c590f794a783083e84765f6553 | |
parent | c625b8e021d93c114d3f09fea419ca521549b7e2 (diff) |
Added a try catch to see full stack trace of null pointer
Issue-ID: SO-3346
Change-Id: Ia64304d5b4ae09bb1dbfc668ea639afc4ef35b35
Signed-off-by: Kalkere Ramesh, Sharan <sk720x@att.com>
-rw-r--r-- | bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionBBTasks.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionBBTasks.java b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionBBTasks.java index 43a85051be..217b3a848e 100644 --- a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionBBTasks.java +++ b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/WorkflowActionBBTasks.java @@ -102,8 +102,11 @@ public class WorkflowActionBBTasks { List<ExecuteBuildingBlock> flowsToExecute = (List<ExecuteBuildingBlock>) execution.getVariable("flowsToExecute"); execution.setVariable("MacroRollback", false); - - flowManipulatorListenerRunner.modifyFlows(flowsToExecute, new DelegateExecutionImpl(execution)); + try { + flowManipulatorListenerRunner.modifyFlows(flowsToExecute, new DelegateExecutionImpl(execution)); + } catch (NullPointerException ex) { + workflowAction.buildAndThrowException(execution, "Error in FlowManipulator Modify Flows", ex); + } int currentSequence = (int) execution.getVariable(G_CURRENT_SEQUENCE); ExecuteBuildingBlock ebb = flowsToExecute.get(currentSequence); |