Name

IndexOutOfBoundsException

Synopsis

This exception indicates that an operation used an index value that was invalid for the given data. J2SE provides two subclasses of IndexOutOfBoundsException that are commonly used with arrays and strings: ArrayIndexOutOfBoundsException and StringIndexOutOfBoundsException. This class is the same as its J2SE equivalent, apart from its inability to be serialized.

                  
public class IndexOutOfBoundsException extends RuntimeException {  
// Public Constructors
   public IndexOutOfBoundsException();  
   public IndexOutOfBoundsException( String s);  
}

Subclasses

ArrayIndexOutOfBoundsException, StringIndexOutOfBoundsException

Get J2ME in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.