FabricChaosAlreadyRunningException Constructors

Definition

Overloads

FabricChaosAlreadyRunningException()

Initializes a new instance of FabricChaosAlreadyRunningException class with error code ChaosAlreadyRunning.

FabricChaosAlreadyRunningException(String)

Initializes a new instance of FabricChaosAlreadyRunningException class with error code ChaosAlreadyRunning and a specified error message.

FabricChaosAlreadyRunningException(SerializationInfo, StreamingContext)

Initializes a new instance of FabricChaosAlreadyRunningException class from a serialized object data, with a specified context.

FabricChaosAlreadyRunningException(String, Exception)

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

FabricChaosAlreadyRunningException()

Initializes a new instance of FabricChaosAlreadyRunningException class with error code ChaosAlreadyRunning.

public FabricChaosAlreadyRunningException ();
Public Sub New ()

Applies to

FabricChaosAlreadyRunningException(String)

Initializes a new instance of FabricChaosAlreadyRunningException class with error code ChaosAlreadyRunning and a specified error message.

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

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

FabricChaosAlreadyRunningException(SerializationInfo, StreamingContext)

Initializes a new instance of FabricChaosAlreadyRunningException class from a serialized object data, with a specified context.

protected FabricChaosAlreadyRunningException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Fabric.FabricChaosAlreadyRunningException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Fabric.FabricChaosAlreadyRunningException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The SerializationInfo object that contains serialized object data of the exception being thrown.

context
StreamingContext

The StreamingContext object that contains contextual information about the source or destination. The context parameter is reserved for future use and can be null.

Applies to

FabricChaosAlreadyRunningException(String, Exception)

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

public FabricChaosAlreadyRunningException (string message, Exception inner);
new System.Fabric.FabricChaosAlreadyRunningException : string * Exception -> System.Fabric.FabricChaosAlreadyRunningException
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 null if no inner exception is specified. The Exception class provides more details about the inner exception.

Applies to