FileDocCategorySizeDatePackage
NegativeArraySizeException.javaAPI DocJava SE 5 API836Fri Aug 26 14:57:02 BST 2005java.lang

NegativeArraySizeException

public class NegativeArraySizeException extends RuntimeException
Thrown if an application tries to create an array with negative size.
author
unascribed
version
1.19, 12/19/03
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