ResponseFormatException Constructor (String, Exception)

 

Applies To: SQL Server (starting with 2016)

Initializes a new instance of the ResponseFormatException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

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

Parameters

  • message
    Type: System.String

    The error message that explains the reason for the exception.

  • innerException
    Type: System.Exception

    The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

See Also

ResponseFormatException Overload
ResponseFormatException Class
Microsoft.AnalysisServices Namespace

Return to top