Class java.lang.StackOverflowError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.StackOverflowError

Object
   |
   +----Throwable
           |
           +----Error
                   |
                   +----VirtualMachineError
                           |
                           +----java.lang.StackOverflowError

public class StackOverflowError
extends VirtualMachineError
Thrown when a stack overflow occurs because an application recurses too deeply.

Version:
1.14, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

 o java.lang.StackOverflowError()
Constructs a StackOverflowError with no detail message.
 o java.lang.StackOverflowError(String)
Constructs a StackOverflowError with the specified detail message.

Constructors

 o StackOverflowError
public StackOverflowError()
Constructs a StackOverflowError with no detail message.

Since:
JDK1.0
 o StackOverflowError
public StackOverflowError(String s)
Constructs a StackOverflowError with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index