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

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.

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  Class Hierarchy  This Package  Previous  Next  Index