001 /*
002 * $Id: NoConvergenceException.java 3019 2010-03-05 18:42:41Z kredel $
003 */
004
005 package edu.jas.root;
006
007
008 /**
009 * No convergence exception class. Exception to be thrown when an
010 * iteration does not converge.
011 * @author Heinz Kredel
012 */
013
014 public class NoConvergenceException extends Exception {
015
016
017 public NoConvergenceException() {
018 super("NoConvergenceException");
019 }
020
021
022 public NoConvergenceException(String c) {
023 super(c);
024 }
025
026
027 public NoConvergenceException(String c, Throwable t) {
028 super(c, t);
029 }
030
031
032 public NoConvergenceException(Throwable t) {
033 super("NoConvergenceException", t);
034 }
035
036 }