Class OperationFailedException

All Implemented Interfaces:
Serializable, HasFriendlyErrorMessage

public class OperationFailedException extends AnchorFriendlyCheckedException
Generic checked exception that can be thrown when a particular operation fails.

OperationFailedRuntimeException is a similar runtime exception.

Author:
Owen Feehan
See Also:
  • Constructor Details

    • OperationFailedException

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

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

      public OperationFailedException(String message, Throwable cause)
      Creates with both a message and cause.
      Parameters:
      message - the message.
      cause - the cause.