/**@class java.lang.StringIndexOutOfBoundsException
@extends java.lang.IndexOutOfBoundsException

 Thrown by {@code String} methods to indicate that an index
 is either negative or greater than the size of the string.  For
 some methods such as the charAt method, this exception also is
 thrown when the index is equal to the size of the string.

 @author  unascribed
 @see     java.lang.String#charAt(int)
 @since   JDK1.0
*/
var StringIndexOutOfBoundsException = {


};