Package com.bayesserver.inference
Class ConvergenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.bayesserver.inference.ConvergenceException
-
- All Implemented Interfaces:
Serializable
public class ConvergenceException extends RuntimeException
Exception raised when an iterative inference algorithm fails to converge to within a given tolerance.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConvergenceException()
Initializes a new instance of theConvergenceException
class.ConvergenceException(String message)
Initializes a new instance of theConvergenceException
class.ConvergenceException(String message, Exception inner)
Initializes a new instance of theConvergenceException
class.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ConvergenceException
public ConvergenceException()
Initializes a new instance of theConvergenceException
class.
-
ConvergenceException
public ConvergenceException(String message)
Initializes a new instance of theConvergenceException
class.- Parameters:
message
- The message.
-
ConvergenceException
public ConvergenceException(String message, Exception inner)
Initializes a new instance of theConvergenceException
class.- Parameters:
message
- The message.inner
- The inner.
-
-