Class OutOfRangeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.math4.exception.MathRuntimeException
org.apache.commons.math4.exception.MathIllegalArgumentException
org.apache.commons.math4.exception.MathIllegalNumberException
org.apache.commons.math4.exception.OutOfRangeException
- All Implemented Interfaces:
java.io.Serializable,ExceptionContextProvider
public class OutOfRangeException extends MathIllegalNumberException
Exception to be thrown when some argument is out of range.
- Since:
- 2.2
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
INTEGER_ZERO -
Constructor Summary
Constructors Constructor Description OutOfRangeException(java.lang.Number wrong, java.lang.Number lo, java.lang.Number hi)Construct an exception from the mismatched dimensions.OutOfRangeException(Localizable specific, java.lang.Number wrong, java.lang.Number lo, java.lang.Number hi)Construct an exception from the mismatched dimensions with a specific context information. -
Method Summary
Methods inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
getArgumentMethods inherited from class org.apache.commons.math4.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Constructor Details
-
OutOfRangeException
public OutOfRangeException(java.lang.Number wrong, java.lang.Number lo, java.lang.Number hi)Construct an exception from the mismatched dimensions.- Parameters:
wrong- Requested value.lo- Lower bound.hi- Higher bound.
-
OutOfRangeException
public OutOfRangeException(Localizable specific, java.lang.Number wrong, java.lang.Number lo, java.lang.Number hi)Construct an exception from the mismatched dimensions with a specific context information.- Parameters:
specific- Context information.wrong- Requested value.lo- Lower bound.hi- Higher bound.
-
-
Method Details