Replaced obsolete exception.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1178081 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-10-01 19:49:51 +00:00
parent 799b4d6176
commit c60cba2ec3
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
*/
package org.apache.commons.math.analysis.integration;
import org.apache.commons.math.MathRuntimeException;
import org.apache.commons.math.exception.MathIllegalArgumentException;
import org.apache.commons.math.exception.MaxCountExceededException;
import org.apache.commons.math.exception.NotStrictlyPositiveException;
import org.apache.commons.math.exception.NumberIsTooSmallException;
@ -156,7 +156,7 @@ public class LegendreGaussIntegrator extends UnivariateRealIntegratorImpl {
weights = WEIGHTS_5;
break;
default :
throw MathRuntimeException.createIllegalArgumentException(
throw new MathIllegalArgumentException(
LocalizedFormats.N_POINTS_GAUSS_LEGENDRE_INTEGRATOR_NOT_SUPPORTED,
n, 2, 5);
}