WorkflowValidationFailedException Constructors
Definition
Initializes a new instance of the WorkflowValidationFailedException class.
Overloads
WorkflowValidationFailedException() |
Initializes a new instance of the WorkflowValidationFailedException class. |
WorkflowValidationFailedException(String) |
Initializes a new instance of the WorkflowValidationFailedException class. The exception message is passed as a parameter. |
WorkflowValidationFailedException(String, Exception) |
Initializes a new instance of the WorkflowValidationFailedException class. The exception message and the inner exception are passed as parameters. |
WorkflowValidationFailedException(String, ValidationErrorCollection) |
Initializes a new instance of the WorkflowValidationFailedException class. The exception message and the errors collection are passed as parameters. |
WorkflowValidationFailedException()
Initializes a new instance of the WorkflowValidationFailedException class.
public:
WorkflowValidationFailedException();
public WorkflowValidationFailedException ();
Public Sub New ()
Applies to
WorkflowValidationFailedException(String)
Initializes a new instance of the WorkflowValidationFailedException class. The exception message is passed as a parameter.
public:
WorkflowValidationFailedException(System::String ^ message);
public WorkflowValidationFailedException (string message);
new System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException : string -> System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException
Public Sub New (message As String)
Parameters
- message
- String
The exception message.
Applies to
WorkflowValidationFailedException(String, Exception)
Initializes a new instance of the WorkflowValidationFailedException class. The exception message and the inner exception are passed as parameters.
public:
WorkflowValidationFailedException(System::String ^ message, Exception ^ innerException);
public WorkflowValidationFailedException (string message, Exception innerException);
new System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException : string * Exception -> System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The exception message.
- innerException
- Exception
The InnerException associated with this exception.
Applies to
WorkflowValidationFailedException(String, ValidationErrorCollection)
Initializes a new instance of the WorkflowValidationFailedException class. The exception message and the errors collection are passed as parameters.
public:
WorkflowValidationFailedException(System::String ^ message, System::Workflow::ComponentModel::Compiler::ValidationErrorCollection ^ errors);
public WorkflowValidationFailedException (string message, System.Workflow.ComponentModel.Compiler.ValidationErrorCollection errors);
new System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException : string * System.Workflow.ComponentModel.Compiler.ValidationErrorCollection -> System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException
Public Sub New (message As String, errors As ValidationErrorCollection)
Parameters
- message
- String
The exception message.
- errors
- ValidationErrorCollection
The ValidationErrorCollection associated with this exception.