Author: erans
Date: Mon Feb 13 14:22:21 2012
New Revision: 1243529
URL: http://svn.apache.org/viewvc?rev=1243529&view=rev
Log:
Made code comply with Javadoc.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java?rev=1243529&r1=1243528&r2=1243529&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolverEvent.java
Mon Feb 13 14:22:21 2012
@@ -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.Iter
*/
public abstract class IterativeLinearSolverEvent
extends IterationEvent {
-
- /** */
+ /** Serialization identifier. */
private static final long serialVersionUID = 20120129L;
/**
@@ -90,7 +90,7 @@ public abstract class IterativeLinearSol
* @return the updated residual, r
*/
public RealVector getResidual() {
- throw new UnsupportedOperationException();
+ throw new MathUnsupportedOperationException();
}
/**