FileDocCategorySizeDatePackage
StackOverflowError.javaAPI DocJava SE 5 API796Fri Aug 26 14:57:04 BST 2005java.lang

StackOverflowError

public class StackOverflowError extends VirtualMachineError
Thrown when a stack overflow occurs because an application recurses too deeply.
author
unascribed
version
1.21, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public StackOverflowError()
Constructs a StackOverflowError with no detail message.

	super();
    
public StackOverflowError(String s)
Constructs a StackOverflowError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary