RetryLimitExceededException Constructor (String, Exception)

 

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

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

Syntax

public RetryLimitExceededException(
    string message,
    Exception innerException
)
public:
RetryLimitExceededException(
    String^ message,
    Exception^ innerException
)
new : 
        message:string *
        innerException:Exception -> RetryLimitExceededException
Public Sub New (
    message As String,
    innerException As Exception
)

Parameters

  • message
    Type: System.String

    The message that describes the error.

  • innerException
    Type: System.Exception

    The exception that is the cause of the current exception.

See Also

RetryLimitExceededException Overload
RetryLimitExceededException Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace

Return to top