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 |
|
Constructs a |
|
StringIndexOutOfBoundsException(index: Int) Constructs a new |
Public constructors
StringIndexOutOfBoundsException
StringIndexOutOfBoundsException()
Constructs a StringIndexOutOfBoundsException
with no detail message.
StringIndexOutOfBoundsException
StringIndexOutOfBoundsException(s: String!)
Constructs a StringIndexOutOfBoundsException
with the specified detail message.
Parameters | |
---|---|
s |
String!: the detail message. |
StringIndexOutOfBoundsException
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. |