cancel
Showing results for 
Search instead for 
Did you mean: 

Exception handling in MII 14.0.5 Patch 8

Former Member
0 Kudos

Hello,

In MII one of my transaction, i have written a block which catch the exception and have few blocks to be executed. My understanding is, if exception occurs, it should skip all subsequent blocks and end the transaction. But i my case, it is throwing exception and proceeding with execution of other blocks. How can i set the transaction to stop executing other blocks after exception occurs?

-Adarsha.K.S

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Adarsha,

After Catch Action block you will find two types of sequences one getting generated with Red Line and other one with Black Line.

The Red Line sequences will be executed in the case some exception is catched by the Catch Action block.

The Black Line Sequences after the Catch Action Block would be executed always.

In your case put the Catch Action block in the end so that exception is caught but no action blocks are executed after the exception.

Regards,

Rohit Negi.

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks for your response Rohit Negi!!!.  i have fixed my code and it works.