FileDocCategorySizeDatePackage
IndexOutOfBoundsException.javaAPI DocAndroid 1.5 API1731Wed May 06 22:41:04 BST 2009java.lang

IndexOutOfBoundsException

public class IndexOutOfBoundsException extends RuntimeException
Thrown when a program attempts to access a value in an indexable collection using a value which is outside of the range of valid indices.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public IndexOutOfBoundsException()
Constructs a new {@code IndexOutOfBoundsException} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public IndexOutOfBoundsException(String detailMessage)
Constructs a new {@code IndexOutOfBoundsException} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary