Eclipse
IntelliJ
NetBeans
XpoLog
Upload
API List
Favorites
Packages
Classes
Methods
Limit search to favorites
Recent
Register
Login
Classic Mode
Library:
Java SE, Sun OpenJDK7.b12
Package:
java.lang
Exception
public
class
ArrayStoreException
Overview
Inheritance
Members
Usage
Source
Books
Since
JDK1.0
Version
1.18, 05/05/07
Author(s)
unascribed
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);
Wiki javadoc
Use
textile entry format
.
Add your comments here.
NOTE: Usage information is based only on libraries in your favorites list.
Home
-
About
-
FAQ
-
Privacy
-
Contact
ArrayStoreException: