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