Class ProposalAbnormalFailureException

All Implemented Interfaces:
Serializable, HasFriendlyErrorMessage

public class ProposalAbnormalFailureException extends AnchorFriendlyCheckedException
An exception thrown when a proposal could not be made for an abnormal reason.

This is different from the usual failure to make a proposal (return value of null), which happens frequently as an ordinary part of proposal routines.

This exception extends AnchorFriendlyCheckedException to provide user-friendly error messages.

Author:
Owen Feehan
See Also:
  • Constructor Details

    • ProposalAbnormalFailureException

      public ProposalAbnormalFailureException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)
    • ProposalAbnormalFailureException

      public ProposalAbnormalFailureException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • ProposalAbnormalFailureException

      public ProposalAbnormalFailureException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)