Search Results for

    Show / Hide Table of Contents
    View Source

    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
    System.Object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.FaultHandling
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    public sealed class RetryLimitExceededException : Exception

    Constructors

    View Source

    RetryLimitExceededException()

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

    Declaration
    public RetryLimitExceededException()
    View Source

    RetryLimitExceededException(Exception)

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

    Declaration
    public RetryLimitExceededException(Exception innerException)
    Parameters
    Type Name Description
    Exception innerException

    The exception that is the cause of the current exception.

    View Source

    RetryLimitExceededException(String)

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

    Declaration
    public RetryLimitExceededException(string message)
    Parameters
    Type Name Description
    System.String message

    The message that describes the error.

    View Source

    RetryLimitExceededException(String, Exception)

    Initializes a new instance of the RetryLimitExceededException class.

    Declaration
    public RetryLimitExceededException(string message, Exception innerException)
    Parameters
    Type Name Description
    System.String message

    The message that describes the error.

    Exception innerException

    The exception that is the cause of the current exception.

    • Improve this Doc
    • View Source
    In This Article
    • Constructors
      • RetryLimitExceededException()
      • RetryLimitExceededException(Exception)
      • RetryLimitExceededException(String)
      • RetryLimitExceededException(String, Exception)
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX