WorkflowTerminatedException Constructors

Definition

Initializes a new instance of the WorkflowTerminatedException class.

Overloads

WorkflowTerminatedException()

Initializes a new instance of the WorkflowTerminatedException class.

WorkflowTerminatedException(String)

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

WorkflowTerminatedException(String, Exception)

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

WorkflowTerminatedException()

Initializes a new instance of the WorkflowTerminatedException class.

public:
 WorkflowTerminatedException();
public WorkflowTerminatedException ();
Public Sub New ()

Applies to

WorkflowTerminatedException(String)

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

public:
 WorkflowTerminatedException(System::String ^ message);
public WorkflowTerminatedException (string message);
new System.Workflow.ComponentModel.WorkflowTerminatedException : string -> System.Workflow.ComponentModel.WorkflowTerminatedException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

WorkflowTerminatedException(String, Exception)

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

public:
 WorkflowTerminatedException(System::String ^ message, Exception ^ exception);
public WorkflowTerminatedException (string message, Exception exception);
new System.Workflow.ComponentModel.WorkflowTerminatedException : string * Exception -> System.Workflow.ComponentModel.WorkflowTerminatedException
Public Sub New (message As String, exception As Exception)

Parameters

message
String

The message that describes the error.

exception
Exception

The inner Exception reference.

Applies to