java.lang
Class StackOverflowError
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Error
|
+--java.lang.VirtualMachineError
|
+--java.lang.StackOverflowError
A StackOverflowError
is thrown when the execution stack
overflow occurs. This often occurs when a method enters infinit recursion.
Authors:- Brian Jones
- Tom Tromey <tromey@cygnus.com>
StackOverflowError
public StackOverflowError()
Create an error without a message.
StackOverflowError
public StackOverflowError(java.lang.String s)
Create an error with a message.
Parameters:
StackOverflowError
is thrown when the execution stack overflow occurs. This often occurs when a method enters infinit recursion.