Javadoc only. Added missing @throws tag.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1054275 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-01 19:36:43 +00:00
parent 5f1658ba9f
commit 3df53c9cdb

View File

@ -256,10 +256,11 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution
* Computes the cumulative probability function and checks for NaN values returned.
* Throws MathException if the value is NaN. Rethrows any MathException encountered
* evaluating the cumulative probability function. Throws
* MathException of the cumulative probability function returns NaN.
* MathException if the cumulative probability function returns NaN.
*
* @param argument input value
* @return cumulative probability
* @throws MathException if the cumulative probability is NaN
*/
private double checkedCumulativeProbability(int argument) throws MathException {
double result = Double.NaN;