FileDocCategorySizeDatePackage
NegativeArraySizeException.javaAPI DocphoneME MR2 API (J2ME)1698Wed May 02 17:59:54 BST 2007java.lang

NegativeArraySizeException

public class NegativeArraySizeException extends RuntimeException
Thrown if an application tries to create an array with negative size.
version
1.15, 12/04/99 (CLDC 1.0, Spring 2000)
since
JDK1.0

Fields Summary
Constructors Summary
public NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.

    super();
    
public NegativeArraySizeException(String s)
Constructs a NegativeArraySizeException with the specified detail message.

param
s the detail message.

    super(s);
    
Methods Summary