From f4abfdc106966ab25dee34174e2d705738de2878 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 4 Sep 2011 14:36:48 +0000 Subject: [PATCH] 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 --- .../org/apache/commons/math/ode/sampling/StepHandler.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java b/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java index 895b6638c..f15ba4cd6 100644 --- a/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java +++ b/src/main/java/org/apache/commons/math/ode/sampling/StepHandler.java @@ -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); }