DthingApi
Public Member Functions | List of all members
java.lang.ArrayIndexOutOfBoundsException Class Reference
Inheritance diagram for java.lang.ArrayIndexOutOfBoundsException:
java.lang.IndexOutOfBoundsException java.lang.RuntimeException java.lang.Exception java.lang.Throwable

Public Member Functions

 ArrayIndexOutOfBoundsException ()
 
 ArrayIndexOutOfBoundsException (int index)
 
 ArrayIndexOutOfBoundsException (String detailMessage)
 
 ArrayIndexOutOfBoundsException (int sourceLength, int index)
 
 ArrayIndexOutOfBoundsException (int sourceLength, int offset, int count)
 
- Public Member Functions inherited from java.lang.IndexOutOfBoundsException
 IndexOutOfBoundsException ()
 
 IndexOutOfBoundsException (String detailMessage)
 
- Public Member Functions inherited from java.lang.RuntimeException
 RuntimeException ()
 
 RuntimeException (String detailMessage)
 
- Public Member Functions inherited from java.lang.Exception
 Exception ()
 
 Exception (String detailMessage)
 
- Public Member Functions inherited from java.lang.Throwable
 Throwable ()
 
 Throwable (String detailMessage)
 
String getMessage ()
 
String getLocalizedMessage ()
 
void printStackTrace ()
 
String toString ()
 

Detailed Description

Thrown when the an array is indexed with a value less than zero, or greater than or equal to the size of the array.

Constructor & Destructor Documentation

◆ ArrayIndexOutOfBoundsException() [1/5]

java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException ( )
inline

Constructs a new

that includes the current stack trace.

◆ ArrayIndexOutOfBoundsException() [2/5]

java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException ( int  index)
inline

Constructs a new

with the current stack trace and a detail message that is based on the specified invalid

index

.

Parameters
indexthe invalid index.

◆ ArrayIndexOutOfBoundsException() [3/5]

java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException ( String  detailMessage)
inline

Constructs a new

with the current stack trace and the specified detail message.

Parameters
detailMessagethe detail message for this exception.

◆ ArrayIndexOutOfBoundsException() [4/5]

java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException ( int  sourceLength,
int  index 
)
inline

Used internally for consistent high-quality error reporting.

◆ ArrayIndexOutOfBoundsException() [5/5]

java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException ( int  sourceLength,
int  offset,
int  count 
)
inline

Used internally for consistent high-quality error reporting.


The documentation for this class was generated from the following file: