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:
 java.io.Serializable,MathThrowable
public class NullArgumentException extends MathIllegalArgumentException
All conditions checks that fail due to anullargument must throw this exception. This class is meant to signal a precondition violation ("null is an illegal argument") and so does not extend the standardNullPointerException. Proagation ofNullPointerExceptionfrom within Commons-Math is construed to be a bug.- Since:
 - 2.2
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description NullArgumentException()Default constructor.NullArgumentException(Localizable specific) 
- 
Method Summary
- 
Methods inherited from class org.apache.commons.math.exception.MathIllegalArgumentException
getArguments, getGeneralPattern, getLocalizedMessage, getMessage, getMessage, getSpecificPattern 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
NullArgumentException
public NullArgumentException()
Default constructor. 
- 
NullArgumentException
public NullArgumentException(Localizable specific)
- Parameters:
 specific- Message pattern providing the specific context of the error.
 
 - 
 
 -