KeyVaultErrorException Constructors

Definition

Overloads

KeyVaultErrorException()

Initializes a new instance of the KeyVaultErrorException class.

KeyVaultErrorException(String)

Initializes a new instance of the KeyVaultErrorException class.

KeyVaultErrorException(String, Exception)

Initializes a new instance of the KeyVaultErrorException class.

KeyVaultErrorException()

Source:
KeyVaultErrorException.cs

Initializes a new instance of the KeyVaultErrorException class.

public KeyVaultErrorException ();
Public Sub New ()

Applies to

KeyVaultErrorException(String)

Source:
KeyVaultErrorException.cs

Initializes a new instance of the KeyVaultErrorException class.

public KeyVaultErrorException (string message);
new Microsoft.Azure.KeyVault.Models.KeyVaultErrorException : string -> Microsoft.Azure.KeyVault.Models.KeyVaultErrorException
Public Sub New (message As String)

Parameters

message
String

The exception message.

Applies to

KeyVaultErrorException(String, Exception)

Source:
KeyVaultErrorException.cs

Initializes a new instance of the KeyVaultErrorException class.

public KeyVaultErrorException (string message, Exception innerException);
new Microsoft.Azure.KeyVault.Models.KeyVaultErrorException : string * Exception -> Microsoft.Azure.KeyVault.Models.KeyVaultErrorException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The exception message.

innerException
Exception

Inner exception.

Applies to