Class MaxCountExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.math4.legacy.exception.MathRuntimeException
-
- org.apache.commons.math4.legacy.exception.MathIllegalStateException
-
- org.apache.commons.math4.legacy.exception.MaxCountExceededException
-
- All Implemented Interfaces:
Serializable
,ExceptionContextProvider
- Direct Known Subclasses:
TooManyEvaluationsException
,TooManyIterationsException
public class MaxCountExceededException extends MathIllegalStateException
Exception to be thrown when some counter maximum value is exceeded.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MaxCountExceededException(Number max)
Construct the exception.MaxCountExceededException(Localizable specific, Number max, Object... args)
Construct the exception with a specific context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Number
getMax()
-
Methods inherited from class org.apache.commons.math4.legacy.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MaxCountExceededException
public MaxCountExceededException(Number max)
Construct the exception.- Parameters:
max
- Maximum.
-
MaxCountExceededException
public MaxCountExceededException(Localizable specific, Number max, Object... args)
Construct the exception with a specific context.- Parameters:
specific
- Specific context pattern.max
- Maximum.args
- Additional arguments.
-
-