Improved build.xml
[vimdoclet.git] / sample / java.lang.ArrayStoreException.txt
blob1474457bf16ce0cbe28df973fbf7ae46b9646590
1 *java.lang.ArrayStoreException* *ArrayStoreException* Thrown to indicate that an
3 public class ArrayStoreException
4   extends    |java.lang.RuntimeException|
6 |java.lang.ArrayStoreException_Description|
7 |java.lang.ArrayStoreException_Fields|
8 |java.lang.ArrayStoreException_Constructors|
9 |java.lang.ArrayStoreException_Methods|
11 ================================================================================
13 *java.lang.ArrayStoreException_Constructors*
14 |java.lang.ArrayStoreException()|Constructs an ArrayStoreException with no deta
15 |java.lang.ArrayStoreException(String)|Constructs an ArrayStoreException with t
17 *java.lang.ArrayStoreException_Description*
19 Thrown to indicate that an attempt has been made to store the wrong type of 
20 object into an array of objects. For example, the following code generates an 
21 ArrayStoreException: 
23 Object x[] = new String[3]; x[0] = new Integer(0); 
26 *java.lang.ArrayStoreException()*
28 public ArrayStoreException()
30 Constructs an ArrayStoreException with no detail message. 
33 *java.lang.ArrayStoreException(String)*
35 public ArrayStoreException(java.lang.String s)
37 Constructs an ArrayStoreException with the specified detail message. 
39     s - the detail message.