Class NotStrictlyPositiveException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.apache.commons.math3.exception.MathIllegalArgumentException
-
- org.apache.commons.math3.exception.MathIllegalNumberException
-
- org.apache.commons.math3.exception.NumberIsTooSmallException
-
- org.apache.commons.math3.exception.NotStrictlyPositiveException
-
- All Implemented Interfaces:
java.io.Serializable
,ExceptionContextProvider
public class NotStrictlyPositiveException extends NumberIsTooSmallException
Exception to be thrown when the argument is not greater than 0.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serializable version Id.-
Fields inherited from class org.apache.commons.math3.exception.MathIllegalNumberException
INTEGER_ZERO
-
-
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.math3.exception.NumberIsTooSmallException
getBoundIsAllowed, getMin
-
Methods inherited from class org.apache.commons.math3.exception.MathIllegalNumberException
getArgument
-
Methods inherited from class org.apache.commons.math3.exception.MathIllegalArgumentException
getContext, getLocalizedMessage, getMessage
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serializable version Id.- See Also:
- Constant Field Values
-
-
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.
-
-