jabber.connection.PubSubException.PubSubException C# (CSharp) Method

PubSubException() public method

Creates a new publish-subscribe exception.
public PubSubException ( Op op, string error, XmlElement elem ) : System
op Op The operation that failed.
error string A description of the error.
elem System.Xml.XmlElement The stanza that caused the error.
return System
        public PubSubException(Op op, string error, XmlElement elem)
            : base(error)
        {
            Operation = op;
            Protocol = elem;
        }
PubSubException