|
![]() |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Error
java.lang.VirtualMachineError
java.lang.StackOverflowError
public class StackOverflowError
StackOverflowError is a virtual machine error that is thrown by the virtual machine if a thread's runtime stack overflows due to a too deep nesting of method calls.
In JamaicaVM, there are two stacks that are relevant for this error: The Java stack that is used by interpreted and compiled methods and the native stack that is used only by compiled methods.
Constructor Summary | |
---|---|
StackOverflowError()
Constructor for a StackOverflowError with no detail message. |
|
StackOverflowError(String s)
Constructor for a StackOverflowError with given detail message. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public StackOverflowError()
public StackOverflowError(String s)
ensures
(s != null IMPLIES getMessage().equals(s));
s
- the detail message.
|
![]() |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |