Constructors Summary |
---|
public StringIndexOutOfBoundsException()Constructs a new {@code StringIndexOutOfBoundsException} that includes
the current stack trace.
super();
|
public StringIndexOutOfBoundsException(int index)Constructs a new {@code StringIndexOutOfBoundsException} with the current
stack trace and a detail message that is based on the specified invalid
{@code index}.
super(Msg.getString("K0055", index)); //$NON-NLS-1$
|
public StringIndexOutOfBoundsException(String detailMessage)Constructs a new {@code StringIndexOutOfBoundsException} with the current
stack trace and the specified detail message.
super(detailMessage);
|