dart · dart/StackOverflowError
StackOverflowError
StackOverflowError
Thrown when the call stack overflows, typically caused by unbounded recursion with no base case.
Also defined in
- java StackOverflowError Thrown when the call stack depth exceeds the JVM limit, almost always caused by unbounded recursion. Increase the stack size with -Xss or fix the recursion.
- kotlin StackOverflowError Thrown when the call stack overflows, most often due to unbounded or mutually recursive function calls with no base case.