Details
-
Improvement
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
5.0M11
-
None
-
None
Description
Following code:
public static void main(String[] arg) throws Exception {
int a[] =
;
a[3] = 4;
}
Generates
java.lang.ArrayIndexOutOfBoundsException
in Harmony but
java.lang.ArrayIndexOutOfBoundsException 3
with Sun Java 1.4
A quick search of the class library shows that ArrayIndexOutOfBoundsException is frequently called without providing the index.
This makes debugging index problems very much harder that it ought to be.