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
cause
ExceptionThe underlying cause for the exception.
SzRetryTimeoutExceededException(long?, string)
Constructs with a message explaing the reason for the exception.
public SzRetryTimeoutExceededException(long? errorCode, string message)
Parameters
errorCode
long?The underlying Senzing error code.
message
stringThe message explaining the reason for the exception.
SzRetryTimeoutExceededException(long?, string, Exception)
Constructs with the Senzing error code, the message explaing 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
errorCode
long?The underlying Senzing error code.
message
stringThe message explaining the reason for the exception.
cause
ExceptionThe underlying cause for the exception.
SzRetryTimeoutExceededException(string)
Constructs with a message explaing the reason for the exception.
public SzRetryTimeoutExceededException(string message)
Parameters
message
stringThe message explaining the reason for the exception.
SzRetryTimeoutExceededException(string, Exception)
Constructs with a message explaing the reason for the exception and
the Exception
that is the underlying cause for the exception.
public SzRetryTimeoutExceededException(string message, Exception cause)