FeatureNotSupportedException Constructors

Definition

Overloads

FeatureNotSupportedException()

Initializes a new instance of the FeatureNotSupportedException class.

FeatureNotSupportedException(String)

Initializes a new instance of the FeatureNotSupportedException class with the specified message.

FeatureNotSupportedException(String, Exception)

Initializes a new instance of the FeatureNotSupportedException class with the specified message and inner exception.

FeatureNotSupportedException()

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

Initializes a new instance of the FeatureNotSupportedException class.

public:
 FeatureNotSupportedException();
public FeatureNotSupportedException ();
Public Sub New ()

Applies to

FeatureNotSupportedException(String)

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

Initializes a new instance of the FeatureNotSupportedException class with the specified message.

public:
 FeatureNotSupportedException(System::String ^ message);
public FeatureNotSupportedException (string message);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String)

Parameters

message
String

A message that describes this exception in more detail.

Applies to

FeatureNotSupportedException(String, Exception)

Source:
Exceptions.shared.cs
Source:
Exceptions.shared.cs

Initializes a new instance of the FeatureNotSupportedException class with the specified message and inner exception.

public:
 FeatureNotSupportedException(System::String ^ message, Exception ^ innerException);
public FeatureNotSupportedException (string message, Exception innerException);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string * Exception -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A message that describes this exception in more detail.

innerException
Exception

An inner exception that has relation to this exception.

Applies to