WorkflowResourceNotFoundException Constructor
Initializes a new instance of the WorkflowResourceNotFoundException class.
Namespace: Microsoft.Workflow.Client
Assembly: Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)
Overload List
Name | Description | |
---|---|---|
WorkflowResourceNotFoundException() | Initializes a new instance of the WorkflowResourceNotFoundException class with default values. |
|
WorkflowResourceNotFoundException(SerializationInfo, StreamingContext) | Initializes a new instance of the WorkflowResourceNotFoundException class with specified serialized data. |
|
WorkflowResourceNotFoundException(String) | Initializes a new instance of the WorkflowResourceNotFoundException class with specified error message. |
|
WorkflowResourceNotFoundException(String, Exception) | Initializes a new instance of the WorkflowResourceNotFoundException class with specified error message and inner exception. |
See Also
WorkflowResourceNotFoundException Class
Microsoft.Workflow.Client Namespace
Return to top
WorkflowResourceNotFoundException Constructor ()
Initializes a new instance of the WorkflowResourceNotFoundException class with default values.
Syntax
public WorkflowResourceNotFoundException()
public:
WorkflowResourceNotFoundException()
new : unit -> WorkflowResourceNotFoundException
Public Sub New
Return to top
WorkflowResourceNotFoundException Constructor (SerializationInfo, StreamingContext)
Initializes a new instance of the WorkflowResourceNotFoundException class with specified serialized data.
Syntax
protected WorkflowResourceNotFoundException(
SerializationInfo info,
StreamingContext context
)
protected:
WorkflowResourceNotFoundException(
SerializationInfo^ info,
StreamingContext context
)
new :
info:SerializationInfo *
context:StreamingContext -> WorkflowResourceNotFoundException
Protected Sub New (
info As SerializationInfo,
context As StreamingContext
)
Parameters
info
Type: System.Runtime.Serialization.SerializationInfoThe object that contains the serialized information about the exception.
context
Type: System.Runtime.Serialization.StreamingContextThe contextual information about the source or destination.
Return to top
WorkflowResourceNotFoundException Constructor (String)
Initializes a new instance of the WorkflowResourceNotFoundException class with specified error message.
Syntax
public WorkflowResourceNotFoundException(
string message
)
public:
WorkflowResourceNotFoundException(
String^ message
)
new :
message:string -> WorkflowResourceNotFoundException
Public Sub New (
message As String
)
Parameters
message
Type: System.StringThe error message that describes the exception.
Return to top
WorkflowResourceNotFoundException Constructor (String, Exception)
Initializes a new instance of the WorkflowResourceNotFoundException class with specified error message and inner exception.
Syntax
public WorkflowResourceNotFoundException(
string message,
Exception inner
)
public:
WorkflowResourceNotFoundException(
String^ message,
Exception^ inner
)
new :
message:string *
inner:Exception -> WorkflowResourceNotFoundException
Public Sub New (
message As String,
inner As Exception
)
Parameters
message
Type: System.StringThe error message that describes the exception.
inner
Type: System.ExceptionThe inner exception that is the cause of the current exception.
Return to top