Package org.anchoranalysis.experiment
Class ExperimentExecutionException
Object
Throwable
Exception
AnchorCheckedException
AnchorFriendlyCheckedException
ExperimentExecutionException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
An exception that occurs when an experiment is executed. This should always contain a friendly
error message to the user.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExperimentExecutionException
(String message) Creates with a message only.ExperimentExecutionException
(String message, Throwable cause) A string message displayed to the user as well as a stack-trace of the cause.Creates with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExperimentExecutionException
Creates with a message only.- Parameters:
message
- the message.
-
ExperimentExecutionException
Creates with a cause only.- Parameters:
cause
- the cause.
-
ExperimentExecutionException
A string message displayed to the user as well as a stack-trace of the cause.- Parameters:
message
- the error message displayed to the user.cause
- cause of the exception.
-