Class java.lang.StackOverflowError
All Packages This Package Previous Next
Class java.lang.StackOverflowError
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Error
|
+----java.lang.VirtualMachineError
|
+----java.lang.StackOverflowError
-
public class
StackOverflowError
-
extends VirtualMachineError
Signals that a stack overflow has occurred.
-
Version:
-
1.11, 08/11/95
-
StackOverflowError()
-
Constructs a StackOverflowError with no detail message.
-
StackOverflowError(String)
-
Constructs a StackOverflowError with the specified detail message.
StackOverflowError
public StackOverflowError()
-
Constructs a StackOverflowError with no detail message.
A detail message is a String that describes this particular exception.
StackOverflowError
public StackOverflowError(String s)
-
Constructs a StackOverflowError with the specified detail message.
A detail message is a String that describes this particular exception.
-
Parameters:
-
s
-
the detail message
All Packages This Package Previous Next