Class SzRetryTimeoutExceededException
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.
public class SzRetryTimeoutExceededException : SzRetryableException, ISerializable
- Inheritance
-
SzRetryTimeoutExceededException
- Implements
- Inherited Members
Constructors
SzRetryTimeoutExceededException()
Default constructor.
public SzRetryTimeoutExceededException()
SzRetryTimeoutExceededException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzRetryTimeoutExceededException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzRetryTimeoutExceededException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzRetryTimeoutExceededException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzRetryTimeoutExceededException(long?, string, Exception)
Constructs with the Senzing error code, the message explaining the reason
for the exception and the Exception that is the underlying cause
for the exception.
public SzRetryTimeoutExceededException(long? errorCode, string message, Exception cause)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
causeExceptionThe underlying cause for the exception.
SzRetryTimeoutExceededException(string)
Constructs with a message explaining the reason for the exception.
public SzRetryTimeoutExceededException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzRetryTimeoutExceededException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzRetryTimeoutExceededException(string message, Exception cause)