/**@class java.lang.StackOverflowError
@extends java.lang.VirtualMachineError
Thrown when the depth of the stack of the running program exceeds some
platform or VM specific limit. Typically, this will occur only
when a program becomes infinitely recursive, but it can also occur in
correctly written (but deeply recursive) programs.
*/
var StackOverflowError = {
};