NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

InvalidFilterCriteriaException Constructor (String, Exception)

Initializes an instance of InvalidFilterCriteriaException with the given message string and the given root cause exception.

[Visual Basic]
Overloads Public Sub New( _
   ByVal message As String, _
   ByVal inner As Exception _
)
[C#]
public InvalidFilterCriteriaException(
   string message,
   Exception inner
);
[C++]
public: InvalidFilterCriteriaException(
   String* message,
   Exception* inner
);
[JScript]
public function InvalidFilterCriteriaException(
   message : String,
   inner : Exception
);

Parameters

message
The message text for the exception.
inner
A reference to an exception.

Remarks

When handling an exception, it is sometimes helpful to have a reference to the exception(s) that caused the error to occur. You can use this constructor to create a chain of new and more meaningful exceptions with the InnerException property set to the inner exception reference. This more meaningful exception can then be thrown to the caller. Note that with this functionality it is possible to create a series of linked exceptions that terminates with the exception that was first thrown. (See Exception for more information.)

InvalidFilterCriteriaException inherits from the Exception. This constructor sets the properties of the Exception object as follows:

Property Value
InnerException null
Message The empty string.

See Also

InvalidFilterCriteriaException Class | InvalidFilterCriteriaException Members | System.Reflection Namespace | InvalidFilterCriteriaException Constructor Overload List