InvalidQueryException Constructor (String, Exception, String)
Initializes a new instance of the InvalidQueryException class by using the provided message, inner exception, and query string.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
public InvalidQueryException(
string message,
Exception innerException,
string queryText
)
public:
InvalidQueryException(
String^ message,
Exception^ innerException,
String^ queryText
)
new :
message:string *
innerException:Exception *
queryText:string -> InvalidQueryException
Public Sub New (
message As String,
innerException As Exception,
queryText As String
)
Parameters
message
Type: System.StringThe error message.
innerException
Type: System.ExceptionThe original exception that caused the current exception.
queryText
Type: System.StringThe query string that caused the problem.
See Also
InvalidQueryException Overload
InvalidQueryException Class
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top