Method CharAt of the Java String class throws a StringIndexOutOfBoundsException. But the Java API documentation says it throws an IndexOutOfBoundsException
. I know that StringIndexOutOfBoundsException
is a subclass of IndexOutOfBoundsException
. But is it incorrect to catch StringIndexOutOfBoundsException
instead of IndexOutOfBoundsException
?
Here is the code of the charAt method
public char charAt(int index) {
if ((index < 0) || (index >= value.length)) {
throw new StringIndexOutOfBoundsException(index);
}
return value[index];
}
No, it's not incorrect. But you can save a few keystrokes and just use IndexOutOfBoundsException, unless you have a method that uses String indexing and e.g. array indexing or list indexing etc. Then you could differentiate the exception types to handle the cases differently.