Table of Contents

Class RetryLimitExceededException

Namespace
CarrotMQ.Core.Protocol
Assembly
CarrotMQ.Core.dll

Represents an exception thrown when the retry limit for a message sent with publisher confirm is exceeded. No ack has been received from the broker to confirm the arrival of this message.

public sealed class RetryLimitExceededException : Exception, ISerializable
Inheritance
RetryLimitExceededException
Implements
Inherited Members

Constructors

RetryLimitExceededException()

Initializes a new instance of the RetryLimitExceededException class with no specific message.

public RetryLimitExceededException()

RetryLimitExceededException(string)

Initializes a new instance of the RetryLimitExceededException class with a specific message.

public RetryLimitExceededException(string message)

Parameters

message string

The message that describes the error.

RetryLimitExceededException(string, Exception)

Initializes a new instance of the RetryLimitExceededException class with a specific message and an inner exception.

public RetryLimitExceededException(string message, Exception inner)

Parameters

message string

The message that describes the error.

inner Exception

The inner exception that caused this exception.