FilterException Constructors

Definition

Overloads

FilterException(String)

Initializes a new instance of the FilterException class using the specified message.

FilterException(String, Exception)

Initializes a new instance of the FilterException class using the specified message and inner exception.

FilterException(String)

Initializes a new instance of the FilterException class using the specified message.

public FilterException (string message);
new Microsoft.ServiceBus.Messaging.FilterException : string -> Microsoft.ServiceBus.Messaging.FilterException
Public Sub New (message As String)

Parameters

message
String

The exception message.

Applies to

FilterException(String, Exception)

Initializes a new instance of the FilterException class using the specified message and inner exception.

public FilterException (string message, Exception innerException);
new Microsoft.ServiceBus.Messaging.FilterException : string * Exception -> Microsoft.ServiceBus.Messaging.FilterException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The exception message.

innerException
Exception

The inner exception.

Applies to