C# Class Polly.ExecutionRejectedException

Exception thrown when a Policy rejects execution of a delegate. More specific exceptions which derive from this type, are generally thrown.
Inheritance: System.Exception
Exibir arquivo Open project: App-vNext/Polly

Public Methods

Method Description
ExecutionRejectedException ( ) : System

Initializes a new instance of the ExecutionRejectedException class.

ExecutionRejectedException ( string message ) : System

Initializes a new instance of the ExecutionRejectedException class.

ExecutionRejectedException ( string message, Exception inner ) : System

Initializes a new instance of the ExecutionRejectedException class.

Protected Methods

Method Description
ExecutionRejectedException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ExecutionRejectedException class.

Method Details

ExecutionRejectedException() public method

Initializes a new instance of the ExecutionRejectedException class.
public ExecutionRejectedException ( ) : System
return System

ExecutionRejectedException() protected method

Initializes a new instance of the ExecutionRejectedException class.
protected ExecutionRejectedException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

ExecutionRejectedException() public method

Initializes a new instance of the ExecutionRejectedException class.
public ExecutionRejectedException ( string message ) : System
message string The message that describes the error.
return System

ExecutionRejectedException() public method

Initializes a new instance of the ExecutionRejectedException class.
public ExecutionRejectedException ( string message, Exception inner ) : System
message string The message that describes the error.
inner System.Exception The inner exception.
return System