Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.lang

Class StackOverflowError

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Error
      |
      +--java.lang.VirtualMachineError
         |
         +--java.lang.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.

Authors:

Constructor Summary

StackOverflowError()

Create an error without a message.
StackOverflowError(java.lang.String s)

Create an error with a message.

Constructor Details

StackOverflowError

public StackOverflowError()

Create an error without a message.


StackOverflowError

public StackOverflowError(java.lang.String s)

Create an error with a message.

Parameters: