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