Class ReplyTimeoutException

All Implemented Interfaces:
Serializable

public final class ReplyTimeoutException extends ServiceException
Signals that a reply timeout event has occurred.
See Also:
  • Field Details

    • TIMEOUT

      public static final int TIMEOUT
      Error code that identifies a reply timeout event.
      See Also:
  • Constructor Details

    • ReplyTimeoutException

      public ReplyTimeoutException()
      Constructs a new ReplyTimeoutException instance. The user message is initialized to null, and the error code is initialized to TIMEOUT.
    • ReplyTimeoutException

      public ReplyTimeoutException(String message)
      Constructs a new ReplyTimeoutException with a message. The user message is initialized to null, and the error code is initialized to TIMEOUT.
      Parameters:
      message - the detail message.
    • ReplyTimeoutException

      public ReplyTimeoutException(Throwable cause)
      Constructs a new ReplyTimeoutException with a cause. The user message is initialized to null, and the error code is initialized to TIMEOUT.
      Parameters:
      cause - the cause of the exception.
    • ReplyTimeoutException

      public ReplyTimeoutException(String message, Throwable cause)
      Constructs a new ReplyTimeoutException with a message and cause. The user message is initialized to null, and the error code is initialized to TIMEOUT.
      Parameters:
      message - the detail message.
      cause - the cause of the exception.
    • ReplyTimeoutException

      public ReplyTimeoutException(String message, String userMessage)
      Constructs a new ReplyTimeoutException with a detail and user message. The error code is initialized to TIMEOUT.
      Parameters:
      message - the detail message.
      userMessage - the user message.
    • ReplyTimeoutException

      public ReplyTimeoutException(String message, String userMessage, Throwable cause)
      Constructs a new ReplyTimeoutException with a detail message, user message and cause. The error code is initialized to TIMEOUT.
      Parameters:
      message - the detail message.
      userMessage - the user message.
      cause - the cause of the exception.