FabricInvalidPartitionSelectorException Constructors

Definition

Overloads

FabricInvalidPartitionSelectorException()

Initializes a new instance of the FabricInvalidPartitionSelectorException class.

FabricInvalidPartitionSelectorException(String)

Initializes a new instance of the FabricInvalidPartitionSelectorException class with a specified error message.

FabricInvalidPartitionSelectorException(String, Exception)

Initializes a new instance of the FabricInvalidPartitionSelectorException class with a specified error message and a reference to the inner exception that is the cause of this exception.

FabricInvalidPartitionSelectorException(String, FabricErrorCode)

Initializes a new instance of FabricInvalidPartitionSelectorException with specified message and error code.

FabricInvalidPartitionSelectorException()

Initializes a new instance of the FabricInvalidPartitionSelectorException class.

public FabricInvalidPartitionSelectorException ();
Public Sub New ()

Applies to

FabricInvalidPartitionSelectorException(String)

Initializes a new instance of the FabricInvalidPartitionSelectorException class with a specified error message.

public FabricInvalidPartitionSelectorException (string message);
new System.Fabric.FabricInvalidPartitionSelectorException : string -> System.Fabric.FabricInvalidPartitionSelectorException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

FabricInvalidPartitionSelectorException(String, Exception)

Initializes a new instance of the FabricInvalidPartitionSelectorException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public FabricInvalidPartitionSelectorException (string message, Exception inner);
new System.Fabric.FabricInvalidPartitionSelectorException : string * Exception -> System.Fabric.FabricInvalidPartitionSelectorException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

Applies to

FabricInvalidPartitionSelectorException(String, FabricErrorCode)

Initializes a new instance of FabricInvalidPartitionSelectorException with specified message and error code.

public FabricInvalidPartitionSelectorException (string message, System.Fabric.FabricErrorCode errorCode);
new System.Fabric.FabricInvalidPartitionSelectorException : string * System.Fabric.FabricErrorCode -> System.Fabric.FabricInvalidPartitionSelectorException
Public Sub New (message As String, errorCode As FabricErrorCode)

Parameters

message
String

The error message that explains the reason for the exception.

errorCode
FabricErrorCode

FabricErrorCode defines the error code that the exception is wrapping around.

Applies to