Moyosoft Products | Services | Download | Contact us    
JavaDocPlus
Products  >  JavaDocPlus  >  Online demo    


Latest release




Get a FREE license !
(Special offer, time limited)

Review JavaDocPlus on your blog and we'll give you a free license.

Open source projects licenced under LGPL, EPL, ASL, BSD or MIT can also obtain a free license.

Contact us to check if your project/blog is eligible.

Online demo
JavaDocPlus Demo  |  Show in full page mode
   
Overview  |  
Classic JavaDoc

Class ArrayStoreException

java.lang.Objectjava.lang.Throwablejava.lang.Exceptionjava.lang.RuntimeExceptionjava.lang.ArrayStoreException


public class ArrayStoreException extends RuntimeException

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);
 

Author:
unascribed

Version:
1.11, 12/19/03

Since:
JDK1.0

Constructors

public
ArrayStoreException ()
Constructs an ArrayStoreException with no detail message.
public
ArrayStoreException (String s)
Constructs an ArrayStoreException with the specified detail message.

Inherited methods

Community comments



Powered by JavaDocPlus