* @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(),
LocalizedFormats.NO_DENSITY_FOR_THIS_DISTRIBUTION);
}