Class ExperimentExecutionException

All Implemented Interfaces:
Serializable, HasFriendlyErrorMessage

public class ExperimentExecutionException extends AnchorFriendlyCheckedException
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 Details

    • ExperimentExecutionException

      public ExperimentExecutionException(String message)
      Creates with a message only.
      Parameters:
      message - the message.
    • ExperimentExecutionException

      public ExperimentExecutionException(Throwable cause)
      Creates with a cause only.
      Parameters:
      cause - the cause.
    • ExperimentExecutionException

      public ExperimentExecutionException(String message, Throwable cause)
      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.