CheckoutException 생성자

정의

CheckoutException 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
CheckoutException()

연결된 메시지 또는 오류 코드 없이 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

CheckoutException(String)

지정된 메시지를 사용하여 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

CheckoutException(SerializationInfo, StreamingContext)

지정된 serialization 데이터 및 컨텍스트를 CheckoutException 사용하여 클래스의 새 인스턴스를 초기화합니다.

CheckoutException(String, Exception)

지정된 자세한 설명과 지정된 예외를 CheckoutException 사용하여 클래스의 새 인스턴스를 초기화합니다.

CheckoutException(String, Int32)

지정된 메시지 및 오류 코드를 사용하여 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

CheckoutException()

연결된 메시지 또는 오류 코드 없이 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

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

적용 대상

CheckoutException(String)

지정된 메시지를 사용하여 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

public:
 CheckoutException(System::String ^ message);
public CheckoutException(string message);
new System.ComponentModel.Design.CheckoutException : string -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String)

매개 변수

message
String

예외를 설명하는 메시지입니다.

적용 대상

CheckoutException(SerializationInfo, StreamingContext)

지정된 serialization 데이터 및 컨텍스트를 CheckoutException 사용하여 클래스의 새 인스턴스를 초기화합니다.

protected:
 CheckoutException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CheckoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ComponentModel.Design.CheckoutException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ComponentModel.Design.CheckoutException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

SerializationInfo 역직렬화에 사용할 개체입니다.

context
StreamingContext

역직렬화에 사용할 대상입니다.

적용 대상

CheckoutException(String, Exception)

지정된 자세한 설명과 지정된 예외를 CheckoutException 사용하여 클래스의 새 인스턴스를 초기화합니다.

public:
 CheckoutException(System::String ^ message, Exception ^ innerException);
public CheckoutException(string message, Exception innerException);
new System.ComponentModel.Design.CheckoutException : string * Exception -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

오류에 대한 자세한 설명입니다.

innerException
Exception

이 예외의 원인인 내부 예외에 대한 참조입니다.

적용 대상

CheckoutException(String, Int32)

지정된 메시지 및 오류 코드를 사용하여 클래스의 CheckoutException 새 인스턴스를 초기화합니다.

public:
 CheckoutException(System::String ^ message, int errorCode);
public CheckoutException(string message, int errorCode);
new System.ComponentModel.Design.CheckoutException : string * int -> System.ComponentModel.Design.CheckoutException
Public Sub New (message As String, errorCode As Integer)

매개 변수

message
String

예외를 설명하는 메시지입니다.

errorCode
Int32

전달할 오류 코드입니다.

적용 대상