Small fixes of javadoc @throws tags.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1400676 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-10-21 16:41:38 +00:00
parent 8bada78845
commit ec6f1c8270
2 changed files with 3 additions and 5 deletions

View File

@ -535,8 +535,6 @@ public class RandomDataGenerator implements RandomData, Serializable {
* endpoints excluded).
* </p>
*
* @throws N if one of the bounds is infinite or
* {@code NaN}
* @throws NumberIsTooLargeException if {@code lower >= upper}
* @throws NotFiniteNumberException if one of the bounds is infinite
* @throws NotANumberException if one of the bounds is not a number

View File

@ -179,8 +179,8 @@ public class ValueServer {
* with <code>mode = DIGEST_MODE</code></p>
*
* @throws IOException if an I/O error occurs reading the input file
* @throws NullArgumentException
* @throws ZeroException if URL contains no data
* @throws NullArgumentException if the {@code valuesFileURL} has not been set
* @throws ZeroException if URL contains no data
*/
public void computeDistribution() throws IOException, ZeroException, NullArgumentException {
computeDistribution(EmpiricalDistribution.DEFAULT_BIN_COUNT);
@ -198,7 +198,7 @@ public class ValueServer {
*
* @param binCount the number of bins used in computing the empirical
* distribution
* @throws NullArgumentException
* @throws NullArgumentException if the {@code valuesFileURL} has not been set
* @throws IOException if an error occurs reading the input file
* @throws ZeroException if URL contains no data
*/