Uses of Class
org.jivesoftware.smack.packet.XMPPError

Packages that use XMPPError
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smack.packet XML packets that are part of the XMPP protocol. 
org.jivesoftware.smack.util Utility classes. 
org.jivesoftware.smackx.bytestreams.ibb   
org.jivesoftware.smackx.commands   
org.jivesoftware.smackx.filetransfer   
 

Uses of XMPPError in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack that return XMPPError
 XMPPError XMPPException.getXMPPError()
          Returns the XMPPError asscociated with this exception, or null if there isn't one.
 

Constructors in org.jivesoftware.smack with parameters of type XMPPError
XMPPException(java.lang.String message, XMPPError error)
          Creates a new XMPPException with a description of the exception and the XMPPException that was the root cause of the exception.
XMPPException(java.lang.String message, XMPPError error, java.lang.Throwable wrappedThrowable)
          Creates a new XMPPException with a description of the exception, an XMPPError, and the Throwable that was the root cause of the exception.
XMPPException(XMPPError error)
          Cretaes a new XMPPException with the XMPPError that was the root case of the exception.
 

Uses of XMPPError in org.jivesoftware.smack.packet
 

Methods in org.jivesoftware.smack.packet that return XMPPError
 XMPPError Packet.getError()
          Returns the error associated with this packet, or null if there are no errors.
 

Methods in org.jivesoftware.smack.packet with parameters of type XMPPError
static IQ IQ.createErrorResponse(IQ request, XMPPError error)
          Convenience method to create a new IQ.Type.ERROR IQ based on a IQ.Type.GET or IQ.Type.SET IQ.
 void Packet.setError(XMPPError error)
          Sets the error for this packet.
 

Uses of XMPPError in org.jivesoftware.smack.util
 

Methods in org.jivesoftware.smack.util that return XMPPError
static XMPPError PacketParserUtils.parseError(org.xmlpull.v1.XmlPullParser parser)
          Parses error sub-packets.
 

Uses of XMPPError in org.jivesoftware.smackx.bytestreams.ibb
 

Methods in org.jivesoftware.smackx.bytestreams.ibb with parameters of type XMPPError
static IQ IBBPacketUtils.createErrorIQ(java.lang.String from, java.lang.String to, XMPPError xmppError)
          Returns an error IQ.
 

Uses of XMPPError in org.jivesoftware.smackx.commands
 

Methods in org.jivesoftware.smackx.commands with parameters of type XMPPError
static AdHocCommand.SpecificErrorCondition AdHocCommand.getSpecificErrorCondition(XMPPError error)
          Returns the specific condition of the error or null if the error doesn't have any.
 

Uses of XMPPError in org.jivesoftware.smackx.filetransfer
 

Methods in org.jivesoftware.smackx.filetransfer with parameters of type XMPPError
 IQ StreamNegotiator.createError(java.lang.String from, java.lang.String to, java.lang.String packetID, XMPPError xmppError)