Package java.lang |
![]() Previous |
![]() Java API |
![]() Index |
![]() Next |
public class java.lang.StackOverflowError extends java.lang.VirtualMachineError { // Constructors public StackOverflowError(); public StackOverflowError(String s); }
Thrown when a stack overflow occurs because an application recurses too deeply.
public StackOverflowError()Constructs a StackOverflowError with no detail message.
public StackOverflowError(String s)Constructs a StackOverflowError with the specified detail message.
Parameter Description s the detail message
© 1996 Sun Microsystems, Inc. All rights reserved.