java.lang
Class StackOverflowError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.VirtualMachineError
-
- java.lang.StackOverflowError
-
public class StackOverflowError extends VirtualMachineError
Thrown when the depth of the callstack of the running program excedes some platform or virtual machine specific limit. Typically, this will occur only when a program becomes infinitely recursive, but it can also occur in correctly written (but deeply recursive) programs.
-
-
Constructor Summary
Constructors Constructor and Description StackOverflowError()
Constructs a newStackOverflowError
that includes the current stack trace.StackOverflowError(String detailMessage)
Constructs a newStackOverflowError
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
StackOverflowError
public StackOverflowError()
Constructs a newStackOverflowError
that includes the current stack trace.
-
StackOverflowError
public StackOverflowError(String detailMessage)
Constructs a newStackOverflowError
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this exception.
-
-