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导致此异常的原因。

适用于