WorkflowTerminatedException 构造函数

定义

初始化 WorkflowTerminatedException 类的新实例。

重载

名称 说明
WorkflowTerminatedException()

初始化 WorkflowTerminatedException 类的新实例。

WorkflowTerminatedException(String)

使用指定的错误消息初始化类的新实例 WorkflowTerminatedException

WorkflowTerminatedException(String, Exception)

使用指定的错误消息和对此WorkflowTerminatedException原因Exception的内部的引用初始化类的新实例Exception

WorkflowTerminatedException()

初始化 WorkflowTerminatedException 类的新实例。

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

适用于

WorkflowTerminatedException(String)

使用指定的错误消息初始化类的新实例 WorkflowTerminatedException

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)

参数

message
String

描述错误的消息。

适用于

WorkflowTerminatedException(String, Exception)

使用指定的错误消息和对此WorkflowTerminatedException原因Exception的内部的引用初始化类的新实例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)

参数

message
String

描述错误的消息。

exception
Exception

内部 Exception 引用。

适用于