Added in API level 1

NegativeArraySizeException

open class NegativeArraySizeException : RuntimeException
kotlin.Any
   โ†ณ kotlin.Throwable
   โ†ณ java.lang.Exception
   โ†ณ java.lang.RuntimeException
   โ†ณ java.lang.NegativeArraySizeException

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

Summary

Public constructors

Constructs a NegativeArraySizeException with no detail message.

Constructs a NegativeArraySizeException with the specified detail message.

Public constructors

NegativeArraySizeException

Added in API level 1
NegativeArraySizeException()

Constructs a NegativeArraySizeException with no detail message.

NegativeArraySizeException

Added in API level 1
NegativeArraySizeException(s: String!)

Constructs a NegativeArraySizeException with the specified detail message.

Parameters
s String!: the detail message.