Most visited

Recently visited

Added in API level 1

StackOverflowError

public class StackOverflowError
extends VirtualMachineError

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.VirtualMachineError
         ↳ java.lang.StackOverflowError


Thrown when a stack overflow occurs because an application recurses too deeply.

Summary

Public constructors

StackOverflowError()

Constructs a StackOverflowError with no detail message.

StackOverflowError(String s)

Constructs a StackOverflowError with the specified detail message.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

StackOverflowError

Added in API level 1
StackOverflowError ()

Constructs a StackOverflowError with no detail message.

StackOverflowError

Added in API level 1
StackOverflowError (String s)

Constructs a StackOverflowError with the specified detail message.

Parameters
s String: the detail message.

Hooray!