Class AlreadyCompletedException

All Implemented Interfaces:
Serializable

public class AlreadyCompletedException extends IllegalStateException
Signals that a mutation method has been invoked on a resource that is already completed. It is no longer possible to mute state of these objects.
See Also:
  • Constructor Details

    • AlreadyCompletedException

      public AlreadyCompletedException(String s)
      Constructs an AlreadyCompletedException with the specified detail message.
      Parameters:
      s - the String that contains a detailed message.
    • AlreadyCompletedException

      public AlreadyCompletedException(String message, Throwable cause)
      Constructs an AlreadyCompletedException 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). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • AlreadyCompletedException

      public AlreadyCompletedException(Throwable cause)
      Constructs an AlreadyCompletedException with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)