I am working in ilog and I have a decision table in which say I have 5 rules. I have some input field as condition say name and age (dummy data) and have some action part related to it. When I pass the input with some condition value as null, exception handler is called in which i have handled the exception and returned false. But problem is if exception occurred in first row then it should throw exception and program should directly reach final action, but in my case all 5 rules are executed and I am getting 5 values for exception which equals the number of rows in table.
public boolean handleexception(IRLruntimeexception ex)
{
errorcode=ex.getmessage();
return false;
}
I am getting 5 times error code value which is incorrect