Class RetryLimitExceededException
The special type of exception that provides managed exit from a retry loop. The user code can use this exception to notify the retry policy that no further retry attempts are required.
Inheritance
Namespace: Umbraco.Cms.Infrastructure.Persistence.FaultHandling
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
public sealed class RetryLimitExceededException : Exception, ISerializable, _Exception
Constructors
RetryLimitExceededException()
Initializes a new instance of the Retry
Declaration
public RetryLimitExceededException()
RetryLimitExceededException(Exception)
Initializes a new instance of the Retry
Declaration
public RetryLimitExceededException(Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
System. |
innerException | The exception that is the cause of the current exception. |
RetryLimitExceededException(String)
Initializes a new instance of the Retry
Declaration
public RetryLimitExceededException(string message)
Parameters
Type | Name | Description |
---|---|---|
System. |
message | The message that describes the error. |
RetryLimitExceededException(String, Exception)
Initializes a new instance of the Retry
Declaration
public RetryLimitExceededException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
System. |
message | The message that describes the error. |
System. |
innerException | The exception that is the cause of the current exception. |