WorkflowTerminatedException 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 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.