Class java.lang.ArrayStoreException
All Packages This Package Previous Next
Class java.lang.ArrayStoreException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----java.lang.ArrayStoreException
-
public class
ArrayStoreException
-
extends RuntimeException
An attempt has been made to store the wrong type of Object to an array.
-
Version:
-
1.1, 07/30/95
-
ArrayStoreException()
-
Constructs a ArrayStoreException with no detail message.
-
ArrayStoreException(String)
-
Constructs a ArrayStoreException with the specified detail message.
ArrayStoreException
public ArrayStoreException()
-
Constructs a ArrayStoreException with no detail message.
A detail message is a String that describes this particular exception.
ArrayStoreException
public ArrayStoreException(String s)
-
Constructs a ArrayStoreException with the specified detail message.
A detail message is a String that describes this particular exception.
-
Parameters:
-
s
-
the String containing a detail message
All Packages This Package Previous Next