Share via


TestManagementValidationException Constructor (String, Exception, Object[])

 

Initializes a new instance of the TestManagementValidationException class by using the provided message, inner exception, and parameters array.

Namespace:   Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

public TestManagementValidationException(
    string message,
    Exception innerException,
    params object[] parameters
)
public:
TestManagementValidationException(
    String^ message,
    Exception^ innerException,
    ... array<Object^>^ parameters
)
new : 
        message:string *
        innerException:Exception *
        [<ParamArrayAttribute>] parameters:Object[] -> TestManagementValidationException
Public Sub New (
    message As String,
    innerException As Exception,
    ParamArray parameters As Object()
)

Parameters

  • innerException
    Type: System.Exception

    The exception that caused this exception.

  • parameters
    Type: System.Object[]

    An array of parameter objects that have values that are not valid or are missing.

See Also

TestManagementValidationException Overload
TestManagementValidationException Class
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top