Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.NegativeArraySizeException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.lang.NegativeArraySizeException

public class NegativeArraySizeException
extends RuntimeException

Thrown if an application tries to create an array with negative size.


Constructor Index

NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.
NegativeArraySizeException(String)
Constructs a NegativeArraySizeException with the specified detail message.

Constructors

NegativeArraySizeException
 public NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.

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

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)