Added in API level 1

StringIndexOutOfBoundsException

open class StringIndexOutOfBoundsException : IndexOutOfBoundsException
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ java.lang.RuntimeException
   ↳ java.lang.IndexOutOfBoundsException
   ↳ java.lang.StringIndexOutOfBoundsException

Thrown by 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.

Summary

Public constructors

Constructs a StringIndexOutOfBoundsException with no detail message.

Constructs a StringIndexOutOfBoundsException with the specified detail message.

Constructs a new StringIndexOutOfBoundsException class with an argument indicating the illegal index.

Public constructors

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException()

Constructs a StringIndexOutOfBoundsException with no detail message.

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException(s: String!)

Constructs a StringIndexOutOfBoundsException with the specified detail message.

Parameters
s String!: the detail message.

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException(index: Int)

Constructs a new StringIndexOutOfBoundsException class with an argument indicating the illegal index.

The index is included in this exception's detail message. The exact presentation format of the detail message is unspecified.

Parameters
index Int: the illegal index.