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

예외의 유형을 나타내는 문자열입니다.

적용 대상