/* SVDCException.java copyright claim: Steve Verrill USDA Forest Products Laboratory 1 Gifford Pinchot Drive Madison, Wisconsin 53705 The translator's e-mail address is: steve@ws10.fpl.fs.fed.us */ //package linear_algebra; /** * *This is the exception produced by the Singular Value Decomposition method. *See the SVDC_f77.java code for details. * */ public class SVDCException extends Exception { public int info; public SVDCException(int info) { this.info = info; } public SVDCException(String problem) { super(problem); } public SVDCException() { } }