* @return The pdf at point x.
* @throws MathRuntimeException if the specialized class hasn't implemented this function
* @since 2.1
*/
public double density(double x) throws MathRuntimeException {
throw new MathRuntimeException(new UnsupportedOperationException(),
"This distribution does not have a density function implemented");
}