ArrayStoreException in java
ArrayStoreException is a run time exception which is thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects. Class Hierarchy of ArrayStoreException: java.lang.Object ↳ java.lang.Throwable ↳ java.lang.Exception ↳ java.lang.RuntimeException ↳ java.lang.ArrayStoreException Constructors of ArrayStoreException: public ArrayStoreException() It is used to construct an ArrayStoreException with … Read more