Class MathIllegalNumberException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.math4.exception.MathRuntimeException
org.apache.commons.math4.exception.MathIllegalArgumentException
org.apache.commons.math4.exception.MathIllegalNumberException
- 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.IntegerINTEGER_ZEROHelper to avoid boxing warnings. -
Constructor Summary
Constructors Modifier Constructor Description protectedMathIllegalNumberException(Localizable pattern, java.lang.Number wrong, java.lang.Object... arguments)Construct an exception. -
Method Summary
Modifier and Type Method Description java.lang.NumbergetArgument()Methods inherited from class org.apache.commons.math4.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Field Details
-
INTEGER_ZERO
protected static final java.lang.Integer INTEGER_ZEROHelper 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.
-