Package com.bayesserver.analysis
Class ConstraintNotSatisfiedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.bayesserver.analysis.ConstraintNotSatisfiedException
-
- All Implemented Interfaces:
Serializable
public class ConstraintNotSatisfiedException extends Exception
Exception raised when parameter tuning attempts to solve for a constraint that cannot be satisfied by the change(s) in parameters.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConstraintNotSatisfiedException()Initializes a new instance of theConstraintNotSatisfiedExceptionclass.ConstraintNotSatisfiedException(String message)Initializes a new instance of theConstraintNotSatisfiedExceptionclass.ConstraintNotSatisfiedException(String message, Throwable cause)Initializes a new instance of theConstraintNotSatisfiedExceptionclass with a specified error message and a reference to the inner exception that is the cause of this exception.ConstraintNotSatisfiedException(Throwable cause)Initializes a new instance of theConstraintNotSatisfiedExceptionclass 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
-
ConstraintNotSatisfiedException
public ConstraintNotSatisfiedException()
Initializes a new instance of theConstraintNotSatisfiedExceptionclass.
-
ConstraintNotSatisfiedException
public ConstraintNotSatisfiedException(String message)
Initializes a new instance of theConstraintNotSatisfiedExceptionclass.- Parameters:
message- The message.
-
ConstraintNotSatisfiedException
public ConstraintNotSatisfiedException(String message, Throwable cause)
Initializes a new instance of theConstraintNotSatisfiedExceptionclass 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.
-
ConstraintNotSatisfiedException
public ConstraintNotSatisfiedException(Throwable cause)
Initializes a new instance of theConstraintNotSatisfiedExceptionclass 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.
-
-