org.apache.commons.math3.exception
Class MaxCountExceededException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalStateException
                  extended by org.apache.commons.math3.exception.MathIllegalStateException
                      extended by org.apache.commons.math3.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
Version:
$Id: MaxCountExceededException.java 1364378 2012-07-22 17:42:38Z tn $
See Also:
Serialized Form

Constructor Summary
MaxCountExceededException(Localizable specific, Number max, Object... args)
          Construct the exception with a specific context.
MaxCountExceededException(Number max)
          Construct the exception.
 
Method Summary
 Number getMax()
           
 
Methods inherited from class org.apache.commons.math3.exception.MathIllegalStateException
getContext, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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.
Method Detail

getMax

public Number getMax()
Returns:
the maximum number of evaluations.


Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.