Share via


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
System_CAPS_pubmethod WorkflowResourceNotFoundException()

Initializes a new instance of the WorkflowResourceNotFoundException class with default values.

System_CAPS_protmethod WorkflowResourceNotFoundException(SerializationInfo, StreamingContext)

Initializes a new instance of the WorkflowResourceNotFoundException class with specified serialized data.

System_CAPS_pubmethod WorkflowResourceNotFoundException(String)

Initializes a new instance of the WorkflowResourceNotFoundException class with specified error message.

System_CAPS_pubmethod 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

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

    The 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.String

    The error message that describes the exception.

  • inner
    Type: System.Exception

    The inner exception that is the cause of the current exception.

Return to top