FileDocCategorySizeDatePackage
StackOverflowError.javaAPI DocAndroid 1.5 API1850Wed May 06 22:41:04 BST 2009java.lang

StackOverflowError

public class StackOverflowError extends VirtualMachineError
Thrown when the depth of the callstack of the running program excedes some platform or virtual machine 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.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public StackOverflowError()
Constructs a new {@code StackOverflowError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public StackOverflowError(String detailMessage)
Constructs a new {@code StackOverflowError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary