Class java.lang.IndexOutOfBoundsException
All Packages    This Package    Previous    Next

Class java.lang.IndexOutOfBoundsException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.lang.IndexOutOfBoundsException

public class IndexOutOfBoundsException
extends RuntimeException
Signals that an index of some sort is out of bounds.
Version:
1.1, 07/30/95
Author:
Frank Yellin

Constructor Index

 o IndexOutOfBoundsException()
Constructs an IndexOutOfBoundsException with no detail message.
 o IndexOutOfBoundsException(String)
Constructs a IndexOutOfBoundsException with the specified detail message.

Constructors

 o IndexOutOfBoundsException
  public IndexOutOfBoundsException()
Constructs an IndexOutOfBoundsException with no detail message. A detail message is a String that describes this particular exception.

 o IndexOutOfBoundsException

  public IndexOutOfBoundsException(String s)
Constructs a IndexOutOfBoundsException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message


All Packages    This Package    Previous    Next