exception documentation
class BaseError(Exception): (source)
Known subclasses: twisted.words.protocols.jabber.error.StanzaError, twisted.words.protocols.jabber.error.StreamError
Constructor: BaseError(condition, text, textLang, appCondition)
Base class for XMPP error exceptions.
| Method | __init__ |
Undocumented |
| Method | __str__ |
Undocumented |
| Method | get |
Get XML representation from self. |
| Class Variable | namespace |
The namespace of the error element generated by getElement. |
| Instance Variable | app |
Application specific condition element, supplementing the error condition in condition. |
| Instance Variable | condition |
The error condition. The valid values are defined by subclasses of BaseError. |
| Instance Variable | text |
Optional text message to supplement the condition or application specific condition. |
| Instance Variable | text |
Identifier of the language used for the message in text. Values are as described in RFC 3066. |
overridden in
twisted.words.protocols.jabber.error.StanzaError, twisted.words.protocols.jabber.error.StreamErrorGet XML representation from self.
The method creates an domish representation of the error data contained in this exception.
| Returns | |
domish.Element | Undocumented |