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

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    This Package    Previous    Next