Share via


ScopeSnapshotNotFoundException Constructor

 

Initializes a new instance of the ScopeSnapshotNotFoundException class.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Overload List

Name Description
System_CAPS_pubmethod ScopeSnapshotNotFoundException()

Initializes a new instance of the ScopeSnapshotNotFoundException class.

System_CAPS_protmethod ScopeSnapshotNotFoundException(SerializationInfo, StreamingContext)

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

System_CAPS_pubmethod ScopeSnapshotNotFoundException(String)

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

System_CAPS_pubmethod ScopeSnapshotNotFoundException(String, Exception)

Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message and inner exception.

See Also

ScopeSnapshotNotFoundException Class
Microsoft.Workflow.Client Namespace

Return to top

ScopeSnapshotNotFoundException Constructor ()

Initializes a new instance of the ScopeSnapshotNotFoundException class.

Syntax

public ScopeSnapshotNotFoundException()
public:
ScopeSnapshotNotFoundException()
new : unit -> ScopeSnapshotNotFoundException
Public Sub New

Return to top

ScopeSnapshotNotFoundException Constructor (SerializationInfo, StreamingContext)

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

Syntax

protected ScopeSnapshotNotFoundException(
    SerializationInfo info,
    StreamingContext context
)
protected:
ScopeSnapshotNotFoundException(
    SerializationInfo^ info,
    StreamingContext context
)
new : 
        info:SerializationInfo *
        context:StreamingContext -> ScopeSnapshotNotFoundException
Protected Sub New (
    info As SerializationInfo,
    context As StreamingContext
)

Parameters

Return to top

ScopeSnapshotNotFoundException Constructor (String)

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

Syntax

public ScopeSnapshotNotFoundException(
    string message
)
public:
ScopeSnapshotNotFoundException(
    String^ message
)
new : 
        message:string -> ScopeSnapshotNotFoundException
Public Sub New (
    message As String
)

Parameters

  • message
    Type: System.String

    The error message that describes the exception.

Return to top

ScopeSnapshotNotFoundException Constructor (String, Exception)

Initializes a new instance of the ScopeSnapshotNotFoundException class with specified error message and inner exception.

Syntax

public ScopeSnapshotNotFoundException(
    string message,
    Exception inner
)
public:
ScopeSnapshotNotFoundException(
    String^ message,
    Exception^ inner
)
new : 
        message:string *
        inner:Exception -> ScopeSnapshotNotFoundException
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