Class NotPositiveException
- 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.MathIllegalNumberException
-
- org.apache.commons.math.exception.NumberIsTooSmallException
-
- org.apache.commons.math.exception.NotPositiveException
-
- All Implemented Interfaces:
java.io.Serializable
,MathThrowable
public class NotPositiveException extends NumberIsTooSmallException
Exception to be thrown when the argument is negative.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotPositiveException(java.lang.Number value)
Construct the exception.NotPositiveException(Localizable specific, java.lang.Number value)
Construct the exception with a specific context.
-
Method Summary
-
Methods inherited from class org.apache.commons.math.exception.NumberIsTooSmallException
getBoundIsAllowed, getMin
-
Methods inherited from class org.apache.commons.math.exception.MathIllegalNumberException
getArgument
-
Methods inherited from class org.apache.commons.math.exception.MathIllegalArgumentException
getArguments, getGeneralPattern, getLocalizedMessage, getMessage, getMessage, getSpecificPattern
-
-
-
-
Constructor Detail
-
NotPositiveException
public NotPositiveException(java.lang.Number value)
Construct the exception.- Parameters:
value
- Argument.
-
NotPositiveException
public NotPositiveException(Localizable specific, java.lang.Number value)
Construct the exception with a specific context.- Parameters:
specific
- Specific context where the error occurred.value
- Argument.
-
-