Table of Contents

Class SzRetryableException

Namespace
Senzing.Sdk
Assembly
Senzing.Sdk.dll

Defines an exceptional condition where the failure is an intermittent condition and the operation may be retried with the same parameters with an expectation of success.

public class SzRetryableException : SzException, ISerializable
Inheritance
SzRetryableException
Implements
Derived
Inherited Members

Constructors

SzRetryableException()

Default constructor.

public SzRetryableException()

SzRetryableException(Exception)

Constructs with the {@link Throwable} that is the underlying cause for the exception.

public SzRetryableException(Exception cause)

Parameters

cause Exception

The underlying cause for the exception.

SzRetryableException(long?, string)

Constructs with a message explaing the reason for the exception.

public SzRetryableException(long? errorCode, string message)

Parameters

errorCode long?

The underlying Senzing error code.

message string

The message explaining the reason for the exception.

SzRetryableException(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 SzRetryableException(long? errorCode, string message, Exception cause)

Parameters

errorCode long?

The underlying Senzing error code.

message string

The message explaining the reason for the exception.

cause Exception

The underlying cause for the exception.

SzRetryableException(string)

Constructs with a message explaing the reason for the exception.

public SzRetryableException(string message)

Parameters

message string

The message explaining the reason for the exception.

SzRetryableException(string, Exception)

Constructs with a message explaing the reason for the exception and the Exception that is the underlying cause for the exception.

public SzRetryableException(string message, Exception cause)

Parameters

message string

The message explaining the reason for the exception.

cause Exception

The underlying cause for the exception.