nr
Class DidNotConvergeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by nr.DidNotConvergeException
All Implemented Interfaces:
java.io.Serializable

public class DidNotConvergeException
extends java.lang.RuntimeException

thrown when an algorithm in package nr does not converge on a solution.

Author:
Daniel Wachsstock
See Also:
Serialized Form

Constructor Summary
DidNotConvergeException()
          Constructs a new runtime exception with null as its detail message
DidNotConvergeException(java.lang.String message)
          Constructs a new exception with the specified detail message.
DidNotConvergeException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
DidNotConvergeException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DidNotConvergeException

public DidNotConvergeException()
Constructs a new runtime exception with null as its detail message


DidNotConvergeException

public DidNotConvergeException(java.lang.String message)
Constructs a new exception with the specified detail message.


DidNotConvergeException

public DidNotConvergeException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.


DidNotConvergeException

public DidNotConvergeException(java.lang.Throwable cause)
Constructs a new exception with the specified cause. The detail message is (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).