MaxConsecutiveSystemExceptions = how many of the SAME System exception can occur at once
maxRetryNumber = how many system exceptions can occur
Scenario 1:
MaxConsecutiveSystemExceptions = 2
maxRetryNumber = 3
sys Exception 1 = Element A not found
sys Exception 2 = Element A not found
At this point robot will not retry the same transaction anything because the SAME system exception has occured 2 times and MaxConsecutiveSystemExceptions = 2
Scenario 2:
MaxConsecutiveSystemExceptions = 2
maxRetryNumber = 3
sys Exception 1 = Element A not found
sys Exception 2 = Element B not found
At this point robot will still retry the transaction one more time because maxRetryNumber = 3 and there are no consecutive system exceptions