All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.math.array.InvalidIndexElementException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----com.ibm.math.array.InvalidIndexElementException

public final class InvalidIndexElementException
extends RuntimeException
InvalidIndexElementException = thrown if an attempt is made to access an invalid element of an Index. The valid indices for elements are between 0 and Index.length() -1 (inclusive).


Constructor Index

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

Constructors

 o InvalidIndexElementException
 public InvalidIndexElementException()
Constructs a InvalidIndexElementException with no detail message.

 o InvalidIndexElementException
 public InvalidIndexElementException(String s)
Constructs a InvalidIndexElementException with the specified detail message.

Parameters:
s - the detail message.

All Packages  Class Hierarchy  This Package  Previous  Next  Index