Class MathIllegalNumberException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
All Implemented Interfaces:
java.io.Serializable, ExceptionContextProvider
Direct Known Subclasses:
DimensionMismatchException, NonMonotonicSequenceException, NotANumberException, NotFiniteNumberException, NumberIsTooLargeException, NumberIsTooSmallException, OutOfRangeException, ZeroException

public class MathIllegalNumberException
extends MathIllegalArgumentException
Base class for exceptions raised by a wrong number. This class is not intended to be instantiated directly: it should serve as a base class to create all the exceptions that are raised because some precondition is violated by a number argument.
Since:
2.2
See Also:
Serialized Form
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected static java.lang.Integer INTEGER_ZERO
    Helper to avoid boxing warnings.
  • Constructor Summary

    Constructors 
    Modifier Constructor Description
    protected MathIllegalNumberException​(Localizable pattern, java.lang.Number wrong, java.lang.Object... arguments)
    Construct an exception.
  • Method Summary

    Modifier and Type Method Description
    java.lang.Number 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
  • Field Details

    • INTEGER_ZERO

      protected static final java.lang.Integer INTEGER_ZERO
      Helper to avoid boxing warnings. @since 3.3
  • Constructor Details

    • MathIllegalNumberException

      protected MathIllegalNumberException​(Localizable pattern, java.lang.Number wrong, java.lang.Object... arguments)
      Construct an exception.
      Parameters:
      pattern - Localizable pattern.
      wrong - Wrong number.
      arguments - Arguments.
  • Method Details

    • getArgument

      public java.lang.Number getArgument()
      Returns:
      the requested value.