Share via


RetryLimitExceededException Class

 

Note: This API is now obsolete.

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.

Namespace:   Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

Inheritance Hierarchy

System.Object
  System.Exception
    Microsoft.WindowsAzure.Common.TransientFaultHandling.RetryLimitExceededException

Syntax

[ObsoleteAttribute("You should use cancellation tokens or other means of stoping the retry loop.")]
public sealed class RetryLimitExceededException : Exception
[ObsoleteAttribute("You should use cancellation tokens or other means of stoping the retry loop.")]
public ref class RetryLimitExceededException sealed : Exception
[<Sealed>]
[<ObsoleteAttribute("You should use cancellation tokens or other means of stoping the retry loop.")>]
type RetryLimitExceededException = 
    class
        inherit Exception
    end
<ObsoleteAttribute("You should use cancellation tokens or other means of stoping the retry loop.")>
Public NotInheritable Class RetryLimitExceededException
    Inherits Exception

Constructors

Name Description
System_CAPS_pubmethod RetryLimitExceededException()

Initializes a new instance of the RetryLimitExceededException class with a default error message.

System_CAPS_pubmethod RetryLimitExceededException(Exception)

Initializes a new instance of the RetryLimitExceededException class with a reference to the inner exception that is the cause of this exception.

System_CAPS_pubmethod RetryLimitExceededException(String)

Initializes a new instance of the RetryLimitExceededException class with a specified error message.

System_CAPS_pubmethod RetryLimitExceededException(String, Exception)

Initializes a new instance of the RetryLimitExceededException class with a specified error message and inner exception.

Properties

Name Description
System_CAPS_pubproperty Data

(Inherited from Exception.)

System_CAPS_pubproperty HelpLink

(Inherited from Exception.)

System_CAPS_pubproperty HResult

(Inherited from Exception.)

System_CAPS_pubproperty InnerException

(Inherited from Exception.)

System_CAPS_pubproperty Message

(Inherited from Exception.)

System_CAPS_pubproperty Source

(Inherited from Exception.)

System_CAPS_pubproperty StackTrace

(Inherited from Exception.)

System_CAPS_pubproperty TargetSite

(Inherited from Exception.)

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetBaseException()

(Inherited from Exception.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetObjectData(SerializationInfo, StreamingContext)

(Inherited from Exception.)

System_CAPS_pubmethod GetType()

(Inherited from Exception.)

System_CAPS_pubmethod ToString()

(Inherited from Exception.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace

Return to top