removed MathUserException from StepHandler interface

JIRA: MATH-488

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1165033 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-09-04 14:36:48 +00:00
parent 5c04a9d456
commit f4abfdc106
1 changed files with 1 additions and 4 deletions

View File

@ -17,7 +17,6 @@
package org.apache.commons.math.ode.sampling;
import org.apache.commons.math.exception.MathUserException;
/**
* This interface represents a handler that should be called after
@ -60,9 +59,7 @@ public interface StepHandler {
* Keeping only a reference to the interpolator and reusing it will
* result in unpredictable behavior (potentially crashing the application).
* @param isLast true if the step is the last one
* @exception MathUserException if user code called from step interpolator
* finalization triggers one
*/
void handleStep(StepInterpolator interpolator, boolean isLast) throws MathUserException;
void handleStep(StepInterpolator interpolator, boolean isLast);
}