EventDeliveryFailedException 构造函数

定义

初始化 EventDeliveryFailedException 类的新实例。

重载

EventDeliveryFailedException()

初始化 EventDeliveryFailedException 类的新实例。

EventDeliveryFailedException(String)

使用解释异常原因的错误消息初始化 EventDeliveryFailedException 类的新实例。

EventDeliveryFailedException(String, Exception)

使用解释异常原因的错误消息和导致此异常的 EventDeliveryFailedException 初始化 Exception 类的新实例。

EventDeliveryFailedException()

初始化 EventDeliveryFailedException 类的新实例。

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

适用于

EventDeliveryFailedException(String)

使用解释异常原因的错误消息初始化 EventDeliveryFailedException 类的新实例。

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

参数

message
String

解释异常原因的错误消息。

适用于

EventDeliveryFailedException(String, Exception)

使用解释异常原因的错误消息和导致此异常的 EventDeliveryFailedException 初始化 Exception 类的新实例。

public:
 EventDeliveryFailedException(System::String ^ message, Exception ^ innerException);
public EventDeliveryFailedException (string message, Exception innerException);
new System.Workflow.Activities.EventDeliveryFailedException : string * Exception -> System.Workflow.Activities.EventDeliveryFailedException
Public Sub New (message As String, innerException As Exception)

参数

message
String

解释异常原因的错误消息。

innerException
Exception

导致此异常的 Exception

适用于