org.apache.commons.math3.exception
Class MaxCountExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
org.apache.commons.math3.exception.MathIllegalStateException
org.apache.commons.math3.exception.MaxCountExceededException
- All Implemented Interfaces:
- Serializable, ExceptionContextProvider
- Direct Known Subclasses:
- TooManyEvaluationsException
public class MaxCountExceededException
- extends MathIllegalStateException
Exception to be thrown when some counter maximum value is exceeded.
- Since:
- 3.0
- Version:
- $Id$
- See Also:
- Serialized Form
Field Summary |
private Number |
max
Maximum number of evaluations. |
private static long |
serialVersionUID
Serializable version Id. |
serialVersionUID
private static final long serialVersionUID
- Serializable version Id.
- See Also:
- Constant Field Values
max
private final Number max
- Maximum number of evaluations.
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.
getMax
public Number getMax()
- Returns:
- the maximum number of evaluations.
Copyright (c) 2003-2013 Apache Software Foundation