001/* 002 * $Id: NoConvergenceException.java 5568 2016-08-03 19:14:39Z kredel $ 003 */ 004 005package edu.jas.root; 006 007 008/** 009 * No convergence exception class. Exception to be thrown when an iteration does 010 * not converge. 011 * @author Heinz Kredel 012 */ 013 014public 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}