Class OutOfRangeException

java.lang.Object
java.lang.Throwable
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

    Modifier and Type Method Description
    java.lang.Number getHi()  
    java.lang.Number getLo()  

    Methods inherited from class org.apache.commons.math4.exception.MathIllegalNumberException

    getArgument

    Methods inherited from class org.apache.commons.math4.exception.MathRuntimeException

    getContext, getLocalizedMessage, getMessage

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 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

    • getLo

      public java.lang.Number getLo()
      Returns:
      the lower bound.
    • getHi

      public java.lang.Number getHi()
      Returns:
      the higher bound.