java.lang
Class NegativeArraySizeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.lang.NegativeArraySizeException
All Implemented Interfaces:
Serializable

public class NegativeArraySizeException
extends RuntimeException

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

Since:
JDK1.0
Version:
1.17, 12/03/01
Author:
unascribed
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
NegativeArraySizeException()
          Enabled: Constructs a NegativeArraySizeException with no detail message.
NegativeArraySizeException(String s)
          Enabled: Constructs a NegativeArraySizeException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NegativeArraySizeException

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


NegativeArraySizeException

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

Parameters:
s - the detail message.


comments?