Class NumberIsTooSmallException
- 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
-
- All Implemented Interfaces:
java.io.Serializable
,MathThrowable
- Direct Known Subclasses:
NotPositiveException
,NotStrictlyPositiveException
public class NumberIsTooSmallException extends MathIllegalNumberException
Exception to be thrown when a number is too small.- Since:
- 2.2
- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NumberIsTooSmallException(java.lang.Number wrong, java.lang.Number min, boolean boundIsAllowed)
Construct the exception.NumberIsTooSmallException(Localizable specific, java.lang.Number wrong, java.lang.Number min, boolean boundIsAllowed)
Construct the exception with a specific context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getBoundIsAllowed()
java.lang.Number
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
-
NumberIsTooSmallException
public NumberIsTooSmallException(java.lang.Number wrong, java.lang.Number min, boolean boundIsAllowed)
Construct the exception.- Parameters:
wrong
- Value that is smaller than the minimum.min
- minimum.boundIsAllowed
- Whethermin
is included in the allowed range.
-
NumberIsTooSmallException
public NumberIsTooSmallException(Localizable specific, java.lang.Number wrong, java.lang.Number min, boolean boundIsAllowed)
Construct the exception with a specific context.- Parameters:
specific
- Specific contexte pattern .wrong
- Value that is smaller than the minimum.min
- minimum.boundIsAllowed
- Whethermin
is included in the allowed range.
-
-