ptolemy.domains.ct.kernel
Class NumericalNonconvergeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by ptolemy.kernel.util.KernelRuntimeException
                  extended by ptolemy.kernel.util.InvalidStateException
                      extended by ptolemy.domains.ct.kernel.NumericalNonconvergeException
All Implemented Interfaces:
java.io.Serializable

Deprecated. As Ptolemy II 4.1, this class is not used any more.

public class NumericalNonconvergeException
extends InvalidStateException

This exception is used to indicate a numerical iteration not converging, typically in the process of finding the fixed point solution of an algebraic equation. This is a RuntimeException.

Since:
Ptolemy II 0.2
Version:
$Id: NumericalNonconvergeException.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Jie Liu
See Also:
Serialized Form
Accepted Rating:
Green (hyzheng)
Proposed Rating:
Green (hyzheng)

Constructor Summary
NumericalNonconvergeException(Nameable obj1, Nameable obj2, java.lang.String detail)
          Deprecated. Constructs an Exception with a detail message that includes the names of the first two arguments plus the third argument string.
NumericalNonconvergeException(Nameable obj, java.lang.String detail)
          Deprecated. Constructs an Exception with a detail message that includes the name of the first argument and the second argument string.
NumericalNonconvergeException(java.lang.String detail)
          Deprecated. Constructs an Exception with only a detail message.
 
Method Summary
 
Methods inherited from class ptolemy.kernel.util.KernelRuntimeException
_setCause, _setMessage, getCause, getMessage, getNameables, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NumericalNonconvergeException

public NumericalNonconvergeException(java.lang.String detail)
Deprecated. 
Constructs an Exception with only a detail message.

Parameters:
detail - The message.

NumericalNonconvergeException

public NumericalNonconvergeException(Nameable obj,
                                     java.lang.String detail)
Deprecated. 
Constructs an Exception with a detail message that includes the name of the first argument and the second argument string.

Parameters:
obj - The object.
detail - The message.

NumericalNonconvergeException

public NumericalNonconvergeException(Nameable obj1,
                                     Nameable obj2,
                                     java.lang.String detail)
Deprecated. 
Constructs an Exception with a detail message that includes the names of the first two arguments plus the third argument string.

Parameters:
obj1 - The first object.
obj2 - The second object.
detail - The message.