Package com.bayesserver.analysis
Class ConstraintSatisfiedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.bayesserver.analysis.ConstraintSatisfiedException
-
- All Implemented Interfaces:
Serializable
public class ConstraintSatisfiedException extends Exception
Exception raised when parameter tuning attempts to solve for a constraint that is already true.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConstraintSatisfiedException()
Initializes a new instance of theConstraintSatisfiedException
class.ConstraintSatisfiedException(String message)
Initializes a new instance of theConstraintSatisfiedException
class.ConstraintSatisfiedException(String message, Throwable cause)
Initializes a new instance of theConstraintSatisfiedException
class with a specified error message and a reference to the inner exception that is the cause of this exception.ConstraintSatisfiedException(Throwable cause)
Initializes a new instance of theConstraintSatisfiedException
class a reference to the inner exception that is the cause of this exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ConstraintSatisfiedException
public ConstraintSatisfiedException()
Initializes a new instance of theConstraintSatisfiedException
class.
-
ConstraintSatisfiedException
public ConstraintSatisfiedException(String message)
Initializes a new instance of theConstraintSatisfiedException
class.- Parameters:
message
- The message.
-
ConstraintSatisfiedException
public ConstraintSatisfiedException(String message, Throwable cause)
Initializes a new instance of theConstraintSatisfiedException
class with a specified error message and a reference to the inner exception that is the cause of this exception.- Parameters:
message
- The error message that explains the reason for the exception.cause
- The exception that is the cause of the current exception.
-
ConstraintSatisfiedException
public ConstraintSatisfiedException(Throwable cause)
Initializes a new instance of theConstraintSatisfiedException
class a reference to the inner exception that is the cause of this exception.- Parameters:
cause
- The exception that is the cause of the current exception.
-
-