EventDeliveryFailedException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the EventDeliveryFailedException class.
Overloads
EventDeliveryFailedException() |
Initializes a new instance of the EventDeliveryFailedException class. |
EventDeliveryFailedException(String) |
Initializes a new instance of the EventDeliveryFailedException class by using the error message that explains the reason for the exception. |
EventDeliveryFailedException(String, Exception) |
Initializes a new instance of the EventDeliveryFailedException class by using the error message that explains the reason for the exception and the Exception that caused this exception. |
EventDeliveryFailedException()
Initializes a new instance of the EventDeliveryFailedException class.
public:
EventDeliveryFailedException();
public EventDeliveryFailedException ();
Public Sub New ()
Applies to
EventDeliveryFailedException(String)
Initializes a new instance of the EventDeliveryFailedException class by using the error message that explains the reason for the exception.
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)
Parameters
- message
- String
An error message that explains the reason for the exception.
Applies to
EventDeliveryFailedException(String, Exception)
Initializes a new instance of the EventDeliveryFailedException class by using the error message that explains the reason for the exception and the Exception that caused this 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)
Parameters
- message
- String
An error message that explains the reason for the exception.