From 1d67ef4bedae4255de7fd7338a48c69add39d18a Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Mon, 13 Feb 2012 14:22:21 +0000 Subject: [PATCH] Made code comply with Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1243529 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/linear/IterativeLinearSolverEvent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java b/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java index dc7ab326d..227101e0e 100644 --- a/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java +++ b/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java @@ -17,6 +17,7 @@ package org.apache.commons.math.linear; 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 @@ -27,8 +28,7 @@ import org.apache.commons.math.util.IterationEvent; */ public abstract class IterativeLinearSolverEvent extends IterationEvent { - - /** */ + /** Serialization identifier. */ private static final long serialVersionUID = 20120129L; /** @@ -90,7 +90,7 @@ public abstract class IterativeLinearSolverEvent * @return the updated residual, r */ public RealVector getResidual() { - throw new UnsupportedOperationException(); + throw new MathUnsupportedOperationException(); } /**