1 Reply Latest reply on Apr 26, 2013 10:23 AM by calca

    JBPM5 Error Handling

    ragramaiah

      Hello,

      How to handle an exception if it occurs in any of the step . For eg. If I have 3 steps, if exception occurs in first step, the execution flow should end and error should be logged.

      But I dont know how to achieve this.Any help would be greatly appreciated.

       

      Thansks,

        • 1. Re: JBPM5 Error Handling
          calca

          Well, I think there are two types of errors.

          Business errors should be handled at process level, using Error Events in should BPMN process.

          Technical exception are different. If you are using persistence, and and exception is thrown by one node, it will roll it back until the last safe state, so the process will not be corrupted. You can catch the exception in the code calling the process (start proess, complete task), and make your own logging and you could also retry. In this case, it can be helpful to use a JMS layer to give orders to the process. As JMS can do the retry, the persistence, etc.

           

          My 2 cents!

           

          Demian