Class MathIllegalNumberException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math3.exception.MathIllegalArgumentException
org.apache.commons.math3.exception.MathIllegalNumberException
- All Implemented Interfaces:
Serializable,ExceptionContextProvider
- Direct Known Subclasses:
DimensionMismatchException,NonMonotonicSequenceException,NotANumberException,NotFiniteNumberException,NumberIsTooLargeException,NumberIsTooSmallException,OutOfRangeException,ZeroException
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:
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedMathIllegalNumberException(Localizable pattern, Number wrong, Object... arguments) Construct an exception. -
Method Summary
Methods inherited from class org.apache.commons.math3.exception.MathIllegalArgumentException
getContext, getLocalizedMessage, getMessageMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
INTEGER_ZERO
Helper to avoid boxing warnings. @since 3.3
-
-
Constructor Details
-
MathIllegalNumberException
Construct an exception.- Parameters:
pattern- Localizable pattern.wrong- Wrong number.arguments- Arguments.
-
-
Method Details
-
getArgument
- Returns:
- the requested value.
-