Search Results for

    Show / Hide Table of Contents

    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
    System.Exception
    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 RetryLimitExceededException class with a default error message.

    Declaration
    public RetryLimitExceededException()

    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
    System.Exception innerException

    The exception that is the cause of the current exception.

    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.

    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.

    System.Exception innerException

    The exception that is the cause of the current exception.

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