Class NotStrictlyPositiveException
- 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.NotStrictlyPositiveException
-
- All Implemented Interfaces:
java.io.Serializable
,MathThrowable
public class NotStrictlyPositiveException extends NumberIsTooSmallException
Exception to be thrown when the argument is negative.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotStrictlyPositiveException(java.lang.Number value)
Construct the exception.NotStrictlyPositiveException(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
-
NotStrictlyPositiveException
public NotStrictlyPositiveException(java.lang.Number value)
Construct the exception.- Parameters:
value
- Argument.
-
NotStrictlyPositiveException
public NotStrictlyPositiveException(Localizable specific, java.lang.Number value)
Construct the exception with a specific context.- Parameters:
specific
- Specific context where the error occurred.value
- Argument.
-
-