Exception: java.lang.ArrayStoreException

Thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects. For example, the following code generates an ArrayStoreException:

     Object x[] = new String[3];
     x[0] = new Integer(0);
 
Authors:
@author unascribed
Version:
@version 1.11, 12/19/03
Since:
@since JDK1.0

Inheritance

Superclass tree: Implements:

Methods