org.apache.commons.math
Class ConvergenceException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.apache.commons.lang.exception.NestableException
              extended byorg.apache.commons.math.MathException
                  extended byorg.apache.commons.math.ConvergenceException
All Implemented Interfaces:
Nestable, Serializable

public class ConvergenceException
extends MathException
implements Serializable

Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.

Version:
$Revision: 1.7 $ $Date: 2003/11/19 03:28:25 $
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.apache.commons.lang.exception.NestableException
delegate
 
Constructor Summary
ConvergenceException()
          Default constructor.
ConvergenceException(String message)
          Construct an exception with the given message.
ConvergenceException(String message, Throwable cause)
          Construct an exception with the given message and root cause.
ConvergenceException(Throwable throwable)
          Create an exception with a given root cause.
 
Methods inherited from class org.apache.commons.lang.exception.NestableException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, 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

ConvergenceException

public ConvergenceException()
Default constructor.


ConvergenceException

public ConvergenceException(String message)
Construct an exception with the given message.

Parameters:
message - descriptive error message.

ConvergenceException

public ConvergenceException(String message,
                            Throwable cause)
Construct an exception with the given message and root cause.

Parameters:
message - descriptive error message.
cause - root cause.

ConvergenceException

public ConvergenceException(Throwable throwable)
Create an exception with a given root cause.

Parameters:
throwable - caught exception causing this problem


Copyright © 2003-2004 Apache Software Foundation. All Rights Reserved.