NotFoundException コンストラクター

定義

NotFoundException クラスの新しいインスタンスを初期化します。

オーバーロード

NotFoundException()

NotFoundException クラスの新しいインスタンスを既定のプロパティ値で初期化します。

NotFoundException(String)

指定された例外の名前を使用して、NotFoundException クラスの新しいインスタンスを初期化します。

NotFoundException(String, String)

指定された例外の名前と型を使用して、NotFoundException クラスの新しいインスタンスを初期化します。

NotFoundException()

NotFoundException クラスの新しいインスタンスを既定のプロパティ値で初期化します。

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

適用対象

NotFoundException(String)

指定された例外の名前を使用して、NotFoundException クラスの新しいインスタンスを初期化します。

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)

パラメーター

name
String

例外の名前を表す文字列。

適用対象

NotFoundException(String, String)

指定された例外の名前と型を使用して、NotFoundException クラスの新しいインスタンスを初期化します。

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)

パラメーター

name
String

例外の名前を表す文字列。

type
String

例外の型を表す文字列。

適用対象