public class

NegativeArraySizeException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.NegativeArraySizeException

Class Overview

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

Summary

Public Constructors
NegativeArraySizeException()
Constructs a NegativeArraySizeException with no detail message.
NegativeArraySizeException(String s)
Constructs a NegativeArraySizeException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public NegativeArraySizeException ()

Constructs a NegativeArraySizeException with no detail message.

public NegativeArraySizeException (String s)

Constructs a NegativeArraySizeException with the specified detail message.

Parameters
s the detail message.