Class RetryLimitExceededException
The exception that is thrown when the action failed again after being retried the configured number of times.
Inherited Members
System.Exception.GetBaseException()
System.Exception.ToString()
System.Exception.GetType()
System.Exception.Message
System.Exception.Data
System.Exception.TargetSite
System.Exception.StackTrace
System.Exception.Source
System.Exception.SerializeObjectState
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
Namespace: IRM.TransientFaultHandling
Assembly: IRM.dll
Syntax
[Serializable]
public sealed class RetryLimitExceededException : Exception, ISerializable, _Exception
Constructors
RetryLimitExceededException()
Initializes a new instance of the RetryLimitExceededException class with no error message.
Declaration
public RetryLimitExceededException()
RetryLimitExceededException(String)
Initializes a new instance of the RetryLimitExceededException class with a specified error message.
Declaration
public RetryLimitExceededException(string message)
Parameters
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
String
message
The message that describes the error. |
Exception
innerException
The exception that is the cause of the current exception. |