Initializes a new instance of the XmppErrorException class with its message string set to message and a reference to the inner exception that is the cause of this exception.

Namespace: S22.Xmpp
Assembly: S22.Xmpp (in S22.Xmpp.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public XmppErrorException(
	XmppError error,
	string message,
	Exception inner
)

Parameters

error
Type: S22.Xmpp..::..XmppError
The XMPP error that is the reason for the exception.
message
Type: System..::..String
A description of the error. The content of message is intended to be understood by humans.
inner
Type: System..::..Exception
The exception that is the cause of the current exception.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThe error parameter is null.

See Also