StringIndexOutOfBoundsExceptionNameStringIndexOutOfBoundsExceptionSynopsis
DescriptionA StringIndexOutOfBoundsException is thrown when a String or StringBuffer object detects an out-of-range index. An out-of-range index occurs when the index is less than zero, or greater than or equal to the length of the string. Class Summary
public class java.lang.StringIndexOutOfBoundsException
extends java.lang.IndexOutOfBoundsException {
// Constructors
public StringIndexOutOfBoundsException();
public StringIndexOutOfBoundsException(int index);
public StringIndexOutOfBoundsException(String s);
}
ConstructorsStringIndexOutOfBoundsExceptionpublic StringIndexOutOfBoundsException()
public StringIndexOutOfBoundsException(int index)
public StringIndexOutOfBoundsException(String s)
Inherited Methods
See AlsoException, IndexOutOfBoundsException, RuntimeException, Throwable |
|