Class FeatureCalculationException
Object
Throwable
Exception
AnchorCheckedException
FeatureCalculationException
- All Implemented Interfaces:
Serializable
When the calculation of a feature cannot complete successfully.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFeatureCalculationException
(String message) Creates with a message only.FeatureCalculationException
(String message, Throwable cause) Creates with both a message and a cause.Creates with a cause only. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FeatureCalculationException
Creates with a message only.- Parameters:
message
- the message.
-
FeatureCalculationException
Creates with a cause only.- Parameters:
cause
- the cause.
-
FeatureCalculationException
Creates with both a message and a cause.- Parameters:
message
- the message.cause
- the cause.
-