IllegalArgumentException is thrown instead of IndexOutOfBoundsException when the preconditions on the offset and length parameters do not hold.
int size = 100;
char[] charArray = new char[size];
try {
CharBuffer c = CharBuffer.wrap(charArray,size,size);
}
catch(IndexOutOfBoundsException e) {
System.out.println("Expected exception thrown ");
}
catch(IllegalArgumentException e) {
System.out.println("Unexpected exception thrown ");
}
results in Unexpected exception thrown.
int size = 100;
char[] charArray = new char[size];
try {
CharBuffer c = CharBuffer.wrap(charArray,size,size);
}
catch(IndexOutOfBoundsException e) {
System.out.println("Expected exception thrown ");
}
catch(IllegalArgumentException e) {
System.out.println("Unexpected exception thrown ");
}
results in Unexpected exception thrown.
- duplicates
-
JDK-4471053 (bf) ByteBuffer.wrap(byte[],int,int) raises wrong exception
-
- Closed
-
- relates to
-
JDK-4431710 (bf) IntBuffer: IllegalArgumentException thrown instead of IndexOutOfBoundsExcep
-
- Closed
-
-
JDK-4433478 (bf) FloatBuffer.wrap does not throw IndexOutOfBoundsException
-
- Closed
-
-
JDK-4520711 (bf) IndexOutOfBounds not thrown in put(int index,double d) for DoubleBuff & Lon
-
- Closed
-