java.lang

Class StackOverflowError

public class StackOverflowError extends VirtualMachineError

A StackOverflowError is thrown when the execution stack overflow occurs. This often occurs when a method enters infinit recursion.

UNKNOWN: updated to 1.4

Constructor Summary
StackOverflowError()
Create an error without a message.
StackOverflowError(String s)
Create an error with a message.

Constructor Detail

StackOverflowError

public StackOverflowError()
Create an error without a message.

StackOverflowError

public StackOverflowError(String s)
Create an error with a message.

Parameters: s the message