org.apache.commons.math
Class MaxIterationsExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.math.MathException
org.apache.commons.math.ConvergenceException
org.apache.commons.math.MaxIterationsExceededException
- All Implemented Interfaces:
- Serializable
public class MaxIterationsExceededException
- extends ConvergenceException
Error thrown when a numerical computation exceeds its allowed
number of iterations.
- Since:
- 1.2
- Version:
- $Revision: 746578 $ $Date: 2009-02-21 15:01:14 -0500 (Sat, 21 Feb 2009) $
- See Also:
- Serialized Form
Method Summary |
int |
getMaxIterations()
Get the maximal number of iterations allowed. |
MaxIterationsExceededException
public MaxIterationsExceededException(int maxIterations)
- Constructs an exception with specified formatted detail message.
Message formatting is delegated to
MessageFormat
.
- Parameters:
maxIterations
- maximal number of iterations allowed
MaxIterationsExceededException
public MaxIterationsExceededException(int maxIterations,
String pattern,
Object... arguments)
- Constructs an exception with specified formatted detail message.
Message formatting is delegated to
MessageFormat
.
- Parameters:
maxIterations
- the exceeded maximal number of iterationspattern
- format specifierarguments
- format arguments
getMaxIterations
public int getMaxIterations()
- Get the maximal number of iterations allowed.
- Returns:
- maximal number of iterations allowed
Copyright © 2003-2010 Apache Software Foundation. All Rights Reserved.