Class NullArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math.exception.MathIllegalArgumentException
org.apache.commons.math.exception.NullArgumentException
- All Implemented Interfaces:
Serializable
,MathThrowable
All conditions checks that fail due to a
null
argument must throw
this exception.
This class is meant to signal a precondition violation ("null is an illegal
argument") and so does not extend the standard NullPointerException
.
Proagation of NullPointerException
from within Commons-Math is
construed to be a bug.- Since:
- 2.2
- See Also:
-
Constructor Summary
-
Method Summary
Methods inherited from class org.apache.commons.math.exception.MathIllegalArgumentException
getArguments, getGeneralPattern, getLocalizedMessage, getMessage, getMessage, getSpecificPattern
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NullArgumentException
public NullArgumentException()Default constructor. -
NullArgumentException
- Parameters:
specific
- Message pattern providing the specific context of the error.
-