waba.lang
Class ArrayIndexOutOfBoundsException

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

public class ArrayIndexOutOfBoundsException
extends IndexOutOfBoundsException

Thrown when you try to access an array index that is < 0 or >= array.length.


Constructor Summary
ArrayIndexOutOfBoundsException()
           
ArrayIndexOutOfBoundsException(int idx)
           
ArrayIndexOutOfBoundsException(String msg)
           
 
Methods inherited from class waba.lang.Throwable
getMessage, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ArrayIndexOutOfBoundsException

public ArrayIndexOutOfBoundsException()

ArrayIndexOutOfBoundsException

public ArrayIndexOutOfBoundsException(int idx)

ArrayIndexOutOfBoundsException

public ArrayIndexOutOfBoundsException(String msg)