FileDocCategorySizeDatePackage
NegativeArraySizeException.javaAPI DocJ2ME CLDC 1.1816Wed Feb 05 15:56:00 GMT 2003java.lang

NegativeArraySizeException

public class NegativeArraySizeException extends RuntimeException
Thrown if an application tries to create an array with negative size.
author
unascribed
version
12/17/01 (CLDC 1.1)
since
JDK1.0, CLDC 1.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