Creates a new instance of the ConferenceFailureException class with a message and inner exception.

Namespace:  Microsoft.Rtc.Collaboration
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
message 
As 
String, _
	
innerException 
As 
Exception _
)
C#
public 
ConferenceFailureException(
	
string 
message,
	
Exception 
innerException
)
Visual C++
public:
ConferenceFailureException(
	
String^ 
message, 
	
Exception^ 
innerException
)
JavaScript

Microsoft.Rtc.Collaboration.ConferenceFailureException = 
function(
message, 
innerException);

Parameters

message
Type: String
The message that describes the error.
innerException
Type: Exception
The exception that is the cause of the current exception.

Remarks

Initializes a specified error message, a reference to the inner exception that is the cause of this exception, the response code, and the response text.

See Also