* @throws IncorrectDistributionParameterException if the value provided for the standard deviation is not greater than zero.
*
*/
public NormalPar(double mean, double standardDeviation) throws IncorrectDistributionParameterException {
if (standardDeviation <= 0) {
throw new IncorrectDistributionParameterException("standardDeviation must be > 0");
} else {
this.standardDeviation = standardDeviation;
this.mean = mean;
}
}