Click or drag to resize
TeamSpeakException Constructor (Error, String, Exception)
Initializes a new instance of the TeamSpeakException class with a specified error code, error message and a reference to the inner exception that is the cause of this exception.

Namespace:  TeamSpeak.Sdk
Assembly:  TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntax
public TeamSpeakException(
	Error errorCode,
	string message,
	Exception inner
)

Parameters

errorCode
Type: TeamSpeak.SdkError
A error code that describes the error.
message
Type: SystemString
A string that describes the error. The content of message is intended to be understood by humans.
inner
Type: SystemException
The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.
See Also