FSUM6131
stack too deep

Explanation

You attempted to put more values on the stack than it was able to hold. The maximum size of the stack is limited by the size of the maximum integer your system can represent.

User response

Check for uncontrolled recursion.