Class SzRetryTimeoutExceededException

All Implemented Interfaces:
Serializable

public class SzRetryTimeoutExceededException extends SzRetryableException
Extends SzRetryableException to define an exceptional condition where an operation failed because a timeout was exceeded. Retrying the operation (possibly with a longer timeout) may result in it completing successfully.
See Also:
  • Constructor Details

    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException()
      Default constructor.
    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException(String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException(int errorCode, String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException(Throwable cause)
      Constructs with the Throwable that is the underlying cause for the exception.
      Parameters:
      cause - The message The message explaining the reason for the exception.
    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException(String message, Throwable cause)
      Constructs with a message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.
    • SzRetryTimeoutExceededException

      public SzRetryTimeoutExceededException(int errorCode, String message, Throwable cause)
      Constructs with the Senzing error code, the message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.