Class TransientFaultException
The exception that is thrown when a transient fault handling was unsuccessful.
Inheritance
Inherited Members
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class TransientFaultException : Exception
Constructors
| Improve this DocTransientFaultException()
Initializes a new instance of the TransientFaultException class.
Declaration
public TransientFaultException()
TransientFaultException(String, TransientFaultEvidence)
Initializes a new instance of the TransientFaultException class.
Declaration
public TransientFaultException(string message, TransientFaultEvidence evidence)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message that describes the error. |
TransientFaultEvidence | evidence | The evidence that provide details about the transient fault. |
TransientFaultException(String, Exception, TransientFaultEvidence)
Initializes a new instance of the TransientFaultException class.
Declaration
public TransientFaultException(string message, Exception innerException, TransientFaultEvidence evidence)
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. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception. |
TransientFaultEvidence | evidence | The evidence that provide details about the transient fault. |
Properties
| Improve this DocEvidence
Gets the evidence that provide details about the transient fault of this instance.
Declaration
public TransientFaultEvidence Evidence { get; }
Property Value
Type | Description |
---|---|
TransientFaultEvidence | The evidence that provide details about the transient fault. |
Methods
| Improve this DocToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |