다음을 통해 공유


RRException 생성자

정의

오버로드

RRException()

RRException 클래스의 새 인스턴스를 만듭니다.

RRException(Result)

RRException 클래스의 새 인스턴스를 만듭니다.

RRException(Result, String)

RRException 클래스의 새 인스턴스를 만듭니다.

RRException(Result, String, String, String)

RRException 클래스의 새 인스턴스를 만듭니다.

RRException(Result, String, String, String, Exception)

RRException 클래스의 새 인스턴스를 만듭니다.

RRException()

RRException 클래스의 새 인스턴스를 만듭니다.

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

적용 대상

RRException(Result)

RRException 클래스의 새 인스턴스를 만듭니다.

public:
 RRException(Microsoft::Azure::RemoteRendering::Result code);
public RRException (Microsoft.Azure.RemoteRendering.Result code);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result)

매개 변수

code
Result

이 예외에 대한 오류 코드입니다.

적용 대상

RRException(Result, String)

RRException 클래스의 새 인스턴스를 만듭니다.

public:
 RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String)

매개 변수

code
Result

이 예외에 대한 오류 코드입니다.

message
String

이 예외에 대한 일반 텍스트 오류 메시지입니다.

적용 대상

RRException(Result, String, String, String)

RRException 클래스의 새 인스턴스를 만듭니다.

public:
 RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message, System::String ^ requestCorrelationVector, System::String ^ responseCorrelationVector);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message, string requestCorrelationVector, string responseCorrelationVector);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string * string * string -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String, requestCorrelationVector As String, responseCorrelationVector As String)

매개 변수

code
Result

이 예외에 대한 오류 코드입니다.

message
String

이 예외에 대한 일반 텍스트 오류 메시지입니다.

requestCorrelationVector
String

이 예외에 대한 상관 관계 벡터를 요청합니다.

responseCorrelationVector
String

이 예외에 대한 응답 상관 관계 벡터입니다.

적용 대상

RRException(Result, String, String, String, Exception)

RRException 클래스의 새 인스턴스를 만듭니다.

public:
 RRException(Microsoft::Azure::RemoteRendering::Result code, System::String ^ message, System::String ^ requestCorrelationVector, System::String ^ responseCorrelationVector, Exception ^ inner);
public RRException (Microsoft.Azure.RemoteRendering.Result code, string message, string requestCorrelationVector, string responseCorrelationVector, Exception inner);
new Microsoft.Azure.RemoteRendering.RRException : Microsoft.Azure.RemoteRendering.Result * string * string * string * Exception -> Microsoft.Azure.RemoteRendering.RRException
Public Sub New (code As Result, message As String, requestCorrelationVector As String, responseCorrelationVector As String, inner As Exception)

매개 변수

code
Result

이 예외에 대한 오류 코드입니다.

message
String

이 예외에 대한 일반 텍스트 오류 메시지입니다.

requestCorrelationVector
String

이 예외에 대한 상관 관계 벡터를 요청합니다.

responseCorrelationVector
String

이 예외에 대한 응답 상관 관계 벡터입니다.

inner
Exception

이 예외가 throw된 원인인 예외입니다.

적용 대상