No examples for this method. 
     
 
     
      Frequently called with: [Clear]  
     
 
      
    
 
     
     
     -1 
    
 
     
     
   | java.lang.Object | |||||
| ↳ | java.lang.Throwable | ||||
| ↳ | java.lang.Exception | ||||
| ↳ | java.lang.RuntimeException | ||||
| ↳ | java.lang.IndexOutOfBoundsException | ||||
| ↳ | java.lang.StringIndexOutOfBoundsException | ||||
Thrown when the a string is indexed with a value less than zero, or greater than or equal to the size of the array.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Constructs a new 
            StringIndexOutOfBoundsExceptionthat includes the current stack trace. | ||||||||||
|  | 
           Constructs a new 
            StringIndexOutOfBoundsExceptionwith the current stack trace and a detail message that is based on the specified invalidindex. | ||||||||||
|  | 
           Constructs a new 
            StringIndexOutOfBoundsExceptionwith the current stack trace and the specified detail message. | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.lang.Throwable | |||||||||||
|  From class java.lang.Object | |||||||||||
Constructs a new StringIndexOutOfBoundsException that includes the current stack trace. 
Constructs a new StringIndexOutOfBoundsException with the current stack trace and a detail message that is based on the specified invalid index.
| index | the index which is out of bounds. | 
|---|
Constructs a new StringIndexOutOfBoundsException with the current stack trace and the specified detail message.
| detailMessage | the detail message for this exception. | 
|---|