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.
-
IndexOutOfBoundsException()
- Constructs an IndexOutOfBoundsException with no detail message.
-
IndexOutOfBoundsException(String)
- Constructs a IndexOutOfBoundsException with the specified detail message.
IndexOutOfBoundsException
public IndexOutOfBoundsException()
- Constructs an IndexOutOfBoundsException with no detail message.
A detail message is a String that describes this particular exception.
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