NotFoundException Constructeurs

Définition

Initialise une nouvelle instance de la classe NotFoundException.

Surcharges

NotFoundException()

Initialise une nouvelle instance de la classe NotFoundException avec les valeurs de propriétés par défaut.

NotFoundException(String)

Initialise une nouvelle instance de la classe NotFoundException avec le nom spécifié pour l'exception.

NotFoundException(String, String)

Initialise une nouvelle instance de la classe NotFoundException avec le nom et le type spécifiés pour l'exception.

NotFoundException()

Initialise une nouvelle instance de la classe NotFoundException avec les valeurs de propriétés par défaut.

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

S’applique à

NotFoundException(String)

Initialise une nouvelle instance de la classe NotFoundException avec le nom spécifié pour l'exception.

public:
 NotFoundException(System::String ^ name);
public NotFoundException (string name);
new Microsoft.SqlServer.Management.NotFoundException : string -> Microsoft.SqlServer.Management.NotFoundException
Public Sub New (name As String)

Paramètres

name
String

Chaîne qui représente le nom de l’exception.

S’applique à

NotFoundException(String, String)

Initialise une nouvelle instance de la classe NotFoundException avec le nom et le type spécifiés pour l'exception.

public:
 NotFoundException(System::String ^ name, System::String ^ type);
public NotFoundException (string name, string type);
new Microsoft.SqlServer.Management.NotFoundException : string * string -> Microsoft.SqlServer.Management.NotFoundException
Public Sub New (name As String, type As String)

Paramètres

name
String

Chaîne qui représente le nom de l'exception.

type
String

Chaîne qui représente le type de l'exception.

S’applique à