Package org.opt4j.core.optimizer
Class IncompatibilityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.opt4j.core.optimizer.IncompatibilityException
-
- All Implemented Interfaces:
Serializable
public class IncompatibilityException extends RuntimeException
TheIncompatibilityException
. This exception is thrown if a problem, optimizer, operator, etc. are not compatible.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IncompatibilityException()
Constructs aIncompatibilityException
.IncompatibilityException(String message)
Constructs aIncompatibilityException
.IncompatibilityException(String message, Throwable cause)
Constructs aIncompatibilityException
.IncompatibilityException(Throwable cause)
Constructs aIncompatibilityException
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IncompatibilityException
public IncompatibilityException()
Constructs aIncompatibilityException
.
-
IncompatibilityException
public IncompatibilityException(String message, Throwable cause)
Constructs aIncompatibilityException
.- Parameters:
message
- the messagecause
- the cause
-
IncompatibilityException
public IncompatibilityException(String message)
Constructs aIncompatibilityException
.- Parameters:
message
- the message
-
IncompatibilityException
public IncompatibilityException(Throwable cause)
Constructs aIncompatibilityException
.- Parameters:
cause
- the cause
-
-