Javadoc only. Added missing @throws tag.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1054275 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-01 19:36:43 +00:00
parent 7ab5efee5d
commit a86b4b6182

View File

@ -255,10 +255,11 @@ public abstract class AbstractIntegerDistribution extends AbstractDistribution
* 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 the cumulative probability.
* @throws MathException if the cumulative probability is NaN
*/
private double checkedCumulativeProbability(int argument)
throws MathException {