FileDocCategorySizeDatePackage
NegativeArraySizeException.javaAPI DocAndroid 1.5 API1681Wed May 06 22:41:04 BST 2009java.lang

NegativeArraySizeException

public class NegativeArraySizeException extends RuntimeException
Thrown when an attempt is made to create an array with a size of less than zero.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NegativeArraySizeException()
Constructs a new {@code NegativeArraySizeException} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public NegativeArraySizeException(String detailMessage)
Constructs a new {@code NegativeArraySizeException} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary