Package org.apache.commons.math.fraction
Class FractionConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.math.MathException
org.apache.commons.math.ConvergenceException
org.apache.commons.math.fraction.FractionConversionException
- All Implemented Interfaces:
Serializable
,MathThrowable
Error thrown when a double value cannot be converted to a fraction
in the allowed number of iterations.
- Since:
- 1.2
- Version:
- $Revision: 983921 $ $Date: 2010-08-10 12:46:06 +0200 (mar. 10 août 2010) $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFractionConversionException
(double value, int maxIterations) Constructs an exception with specified formatted detail message.FractionConversionException
(double value, long p, long q) Constructs an exception with specified formatted detail message. -
Method Summary
Methods inherited from class org.apache.commons.math.MathException
getArguments, getGeneralPattern, getLocalizedMessage, getMessage, getMessage, getPattern, getSpecificPattern, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FractionConversionException
public FractionConversionException(double value, int maxIterations) Constructs an exception with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
value
- double value to convertmaxIterations
- maximal number of iterations allowed
-
FractionConversionException
public FractionConversionException(double value, long p, long q) Constructs an exception with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
value
- double value to convertp
- current numeratorq
- current denominator
-