RRException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RRException() |
Creates a new instance of the RRException class. |
RRException(Result) |
Creates a new instance of the RRException class. |
RRException(Result, String) |
Creates a new instance of the RRException class. |
RRException(Result, String, String, String) |
Creates a new instance of the RRException class. |
RRException(Result, String, String, String, Exception) |
Creates a new instance of the RRException class. |
RRException()
Creates a new instance of the RRException class.
public:
RRException();
public RRException ();
Public Sub New ()
Applies to
RRException(Result)
Creates a new instance of the RRException class.
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)
Parameters
- code
- Result
Error code for this exception.
Applies to
RRException(Result, String)
Creates a new instance of the RRException class.
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)
Parameters
- code
- Result
Error code for this exception.
- message
- String
Plain text error message for this exception.
Applies to
RRException(Result, String, String, String)
Creates a new instance of the RRException class.
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)
Parameters
- code
- Result
Error code for this exception.
- message
- String
Plain text error message for this exception.
- requestCorrelationVector
- String
Request correlation vector for this exception.
- responseCorrelationVector
- String
Response correlation vector for this exception.
Applies to
RRException(Result, String, String, String, Exception)
Creates a new instance of the RRException class.
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)
Parameters
- code
- Result
Error code for this exception.
- message
- String
Plain text error message for this exception.
- requestCorrelationVector
- String
Request correlation vector for this exception.
- responseCorrelationVector
- String
Response correlation vector for this exception.
- inner
- Exception
Exception that caused this exception to be thrown.