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.

Constructor Index

 o ArrayStoreException()
Constructs a ArrayStoreException with no detail message.
 o ArrayStoreException(String)
Constructs a ArrayStoreException with the specified detail message.

Constructors

 o ArrayStoreException
  public ArrayStoreException()
Constructs a ArrayStoreException with no detail message. A detail message is a String that describes this particular exception.
 o 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