Made code comply with Javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1243529 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-02-13 14:22:21 +00:00
parent 29896d32df
commit 1d67ef4bed
1 changed files with 3 additions and 3 deletions

View File

@ -17,6 +17,7 @@
package org.apache.commons.math.linear; package org.apache.commons.math.linear;
import org.apache.commons.math.util.IterationEvent; import org.apache.commons.math.util.IterationEvent;
import org.apache.commons.math.exception.MathUnsupportedOperationException;
/** /**
* This is the base class for all events occuring during the iterations of a * This is the base class for all events occuring during the iterations of a
@ -27,8 +28,7 @@ import org.apache.commons.math.util.IterationEvent;
*/ */
public abstract class IterativeLinearSolverEvent public abstract class IterativeLinearSolverEvent
extends IterationEvent { extends IterationEvent {
/** Serialization identifier. */
/** */
private static final long serialVersionUID = 20120129L; private static final long serialVersionUID = 20120129L;
/** /**
@ -90,7 +90,7 @@ public abstract class IterativeLinearSolverEvent
* @return the updated residual, r * @return the updated residual, r
*/ */
public RealVector getResidual() { public RealVector getResidual() {
throw new UnsupportedOperationException(); throw new MathUnsupportedOperationException();
} }
/** /**