Class java.lang.ArrayStoreException
All Packages Class Hierarchy This Package Previous Next Index
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.
-
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 Class Hierarchy This Package Previous Next Index