org.apache.commons.math3.exception
Class OutOfRangeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalArgumentException
                  extended by org.apache.commons.math3.exception.MathIllegalArgumentException
                      extended by org.apache.commons.math3.exception.MathIllegalNumberException
                          extended by org.apache.commons.math3.exception.OutOfRangeException
All Implemented Interfaces:
Serializable, ExceptionContextProvider

public class OutOfRangeException
extends MathIllegalNumberException

Exception to be thrown when some argument is out of range.

Since:
2.2
Version:
$Id: OutOfRangeException.java 1364378 2012-07-22 17:42:38Z tn $
See Also:
Serialized Form

Field Summary
private  Number hi
          Higher bound.
private  Number lo
          Lower bound.
private static long serialVersionUID
          Serializable version Id.
 
Constructor Summary
OutOfRangeException(Localizable specific, Number wrong, Number lo, Number hi)
          Construct an exception from the mismatched dimensions with a specific context information.
OutOfRangeException(Number wrong, Number lo, Number hi)
          Construct an exception from the mismatched dimensions.
 
Method Summary
 Number getHi()
           
 Number getLo()
           
 
Methods inherited from class org.apache.commons.math3.exception.MathIllegalNumberException
getArgument
 
Methods inherited from class org.apache.commons.math3.exception.MathIllegalArgumentException
getContext, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
Serializable version Id.

See Also:
Constant Field Values

lo

private final Number lo
Lower bound.


hi

private final Number hi
Higher bound.

Constructor Detail

OutOfRangeException

public OutOfRangeException(Number wrong,
                           Number lo,
                           Number hi)
Construct an exception from the mismatched dimensions.

Parameters:
wrong - Requested value.
lo - Lower bound.
hi - Higher bound.

OutOfRangeException

public OutOfRangeException(Localizable specific,
                           Number wrong,
                           Number lo,
                           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 Detail

getLo

public Number getLo()
Returns:
the lower bound.

getHi

public Number getHi()
Returns:
the higher bound.


Copyright (c) 2003-2013 Apache Software Foundation