mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
30 lines
885 B
Java
30 lines
885 B
Java
/* Copyright (c) 2008-2014, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* Used by <code>String</code> to signal that a given index is either less than
|
|
* or greater than the allowed range.
|
|
*/
|
|
public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
|
|
private static final long serialVersionUID = -6762910422159637258L;
|
|
|
|
public StringIndexOutOfBoundsException(int index) {
|
|
super("String index out of range: "+index);
|
|
}
|
|
|
|
public StringIndexOutOfBoundsException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public StringIndexOutOfBoundsException() {}
|
|
}
|