Class 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
See Also:
  • Constructor Details

    • 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 Details

    • getLo

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

      public Number getHi()
      Returns:
      the higher bound.