01: // -- @(#)JacobiItterationsExhaustedException.java 1.3 99/03/22
02:
03: package uk.org.ponder.matrix;
04:
05: /**
06: * This exception is raised by any routines relying upon a successful
07: * application of the Jacobi algorithim for determination of eigen values
08: * and vectors. It should never happen. Optionaly the detail string can
09: * be set to allow more informative error messages to be generated.
10: */
11:
12: public class JacobiIterationsExhaustedException extends
13: RuntimeException {
14:
15: public JacobiIterationsExhaustedException(String s) {
16: super(s);
17: }
18:
19: }
|