AdapterException Constructor (String, Exception)

 

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

Namespace:   Microsoft.ComplexEventProcessing.Adapters
Assembly:  Microsoft.ComplexEventProcessing.Adapters (in Microsoft.ComplexEventProcessing.Adapters.dll)

Syntax

public AdapterException(
    string message,
    Exception innerException
)
public:
AdapterException(
    String^ message,
    Exception^ innerException
)
new : 
        message:string *
        innerException:Exception -> AdapterException
Public Sub New (
    message As String,
    innerException As Exception
)

Parameters

  • message
    Type: System.String

    Error message describing the exception.

  • innerException
    Type: System.Exception

    Message that specifies the inner exception.

See Also

AdapterException Overload
AdapterException Class
Microsoft.ComplexEventProcessing.Adapters Namespace

Return to top