EdgeNotFoundException Constructors

Definition

Overloads

EdgeNotFoundException()

Initializes a new instance of the EdgeNotFoundException class.

EdgeNotFoundException(Exception)

Initializes a new instance of the EdgeNotFoundException class with a reference to the inner exception that is the cause of this exception.

EdgeNotFoundException(String)

Initializes a new instance of the EdgeNotFoundException class with a specified error message.

EdgeNotFoundException(String, Exception)

Initializes a new instance of the EdgeNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

EdgeNotFoundException()

Initializes a new instance of the EdgeNotFoundException class.

public EdgeNotFoundException ();
Public Sub New ()

Applies to

EdgeNotFoundException(Exception)

Initializes a new instance of the EdgeNotFoundException class with a reference to the inner exception that is the cause of this exception.

public EdgeNotFoundException (Exception inner);
new Microsoft.Web.WebView2.Core.EdgeNotFoundException : Exception -> Microsoft.Web.WebView2.Core.EdgeNotFoundException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The exception that is the cause of the current exception.

Applies to

EdgeNotFoundException(String)

Initializes a new instance of the EdgeNotFoundException class with a specified error message.

public EdgeNotFoundException (string message);
new Microsoft.Web.WebView2.Core.EdgeNotFoundException : string -> Microsoft.Web.WebView2.Core.EdgeNotFoundException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

EdgeNotFoundException(String, Exception)

Initializes a new instance of the EdgeNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public EdgeNotFoundException (string message, Exception inner);
new Microsoft.Web.WebView2.Core.EdgeNotFoundException : string * Exception -> Microsoft.Web.WebView2.Core.EdgeNotFoundException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to